scene_BASE2.scene 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "scene_BASE2",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "scene_BASE2",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": null,
  26. "_lpos": {
  27. "__type__": "cc.Vec3",
  28. "x": 0,
  29. "y": 0,
  30. "z": 0
  31. },
  32. "_lrot": {
  33. "__type__": "cc.Quat",
  34. "x": 0,
  35. "y": 0,
  36. "z": 0,
  37. "w": 1
  38. },
  39. "_lscale": {
  40. "__type__": "cc.Vec3",
  41. "x": 1,
  42. "y": 1,
  43. "z": 1
  44. },
  45. "_mobility": 0,
  46. "_layer": 1073741824,
  47. "_euler": {
  48. "__type__": "cc.Vec3",
  49. "x": 0,
  50. "y": 0,
  51. "z": 0
  52. },
  53. "autoReleaseAssets": false,
  54. "_globals": {
  55. "__id__": 78
  56. },
  57. "_id": "5c31d935-079a-45dd-a3be-009c050edc97"
  58. },
  59. {
  60. "__type__": "cc.Node",
  61. "_name": "Canvas",
  62. "_objFlags": 512,
  63. "__editorExtras__": {},
  64. "_parent": {
  65. "__id__": 1
  66. },
  67. "_children": [
  68. {
  69. "__id__": 3
  70. },
  71. {
  72. "__id__": 5
  73. },
  74. {
  75. "__id__": 11
  76. },
  77. {
  78. "__id__": 17
  79. },
  80. {
  81. "__id__": 25
  82. },
  83. {
  84. "__id__": 30
  85. }
  86. ],
  87. "_active": true,
  88. "_components": [
  89. {
  90. "__id__": 75
  91. },
  92. {
  93. "__id__": 76
  94. },
  95. {
  96. "__id__": 77
  97. }
  98. ],
  99. "_prefab": null,
  100. "_lpos": {
  101. "__type__": "cc.Vec3",
  102. "x": 640,
  103. "y": 360,
  104. "z": 0
  105. },
  106. "_lrot": {
  107. "__type__": "cc.Quat",
  108. "x": 0,
  109. "y": 0,
  110. "z": 0,
  111. "w": 1
  112. },
  113. "_lscale": {
  114. "__type__": "cc.Vec3",
  115. "x": 1,
  116. "y": 1,
  117. "z": 1
  118. },
  119. "_mobility": 0,
  120. "_layer": 33554432,
  121. "_euler": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_id": "18fpCjB0NLHpPINKSbm+HP"
  128. },
  129. {
  130. "__type__": "cc.Node",
  131. "_name": "Camera",
  132. "_objFlags": 512,
  133. "__editorExtras__": {},
  134. "_parent": {
  135. "__id__": 2
  136. },
  137. "_children": [],
  138. "_active": true,
  139. "_components": [
  140. {
  141. "__id__": 4
  142. }
  143. ],
  144. "_prefab": null,
  145. "_lpos": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 1000
  150. },
  151. "_lrot": {
  152. "__type__": "cc.Quat",
  153. "x": 0,
  154. "y": 0,
  155. "z": 0,
  156. "w": 1
  157. },
  158. "_lscale": {
  159. "__type__": "cc.Vec3",
  160. "x": 1,
  161. "y": 1,
  162. "z": 1
  163. },
  164. "_mobility": 0,
  165. "_layer": 1073741824,
  166. "_euler": {
  167. "__type__": "cc.Vec3",
  168. "x": 0,
  169. "y": 0,
  170. "z": 0
  171. },
  172. "_id": "f88svJ0kZALaucPiUwRlMa"
  173. },
  174. {
  175. "__type__": "cc.Camera",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "__editorExtras__": {},
  179. "node": {
  180. "__id__": 3
  181. },
  182. "_enabled": true,
  183. "__prefab": null,
  184. "_projection": 0,
  185. "_priority": 0,
  186. "_fov": 45,
  187. "_fovAxis": 0,
  188. "_orthoHeight": 361.7229336437718,
  189. "_near": 1,
  190. "_far": 2000,
  191. "_color": {
  192. "__type__": "cc.Color",
  193. "r": 48,
  194. "g": 48,
  195. "b": 48,
  196. "a": 255
  197. },
  198. "_depth": 1.1,
  199. "_stencil": 0,
  200. "_clearFlags": 7,
  201. "_rect": {
  202. "__type__": "cc.Rect",
  203. "x": 0,
  204. "y": 0,
  205. "width": 1,
  206. "height": 1
  207. },
  208. "_aperture": 19,
  209. "_shutter": 7,
  210. "_iso": 0,
  211. "_screenScale": 1,
  212. "_visibility": 1408253952,
  213. "_targetTexture": null,
  214. "_postProcess": null,
  215. "_usePostProcess": false,
  216. "_cameraType": -1,
  217. "_trackingType": 0,
  218. "_id": "82JDXspx1JorNUHiCORtVk"
  219. },
  220. {
  221. "__type__": "cc.Node",
  222. "_name": "gizmotagstar-001",
  223. "_objFlags": 0,
  224. "__editorExtras__": {},
  225. "_parent": {
  226. "__id__": 2
  227. },
  228. "_children": [],
  229. "_active": true,
  230. "_components": [
  231. {
  232. "__id__": 6
  233. },
  234. {
  235. "__id__": 7
  236. },
  237. {
  238. "__id__": 8
  239. },
  240. {
  241. "__id__": 9
  242. },
  243. {
  244. "__id__": 10
  245. }
  246. ],
  247. "_prefab": null,
  248. "_lpos": {
  249. "__type__": "cc.Vec3",
  250. "x": 13.526,
  251. "y": 242.666,
  252. "z": 0
  253. },
  254. "_lrot": {
  255. "__type__": "cc.Quat",
  256. "x": 0,
  257. "y": 0,
  258. "z": 0,
  259. "w": 1
  260. },
  261. "_lscale": {
  262. "__type__": "cc.Vec3",
  263. "x": 1,
  264. "y": 1,
  265. "z": 1
  266. },
  267. "_mobility": 0,
  268. "_layer": 33554432,
  269. "_euler": {
  270. "__type__": "cc.Vec3",
  271. "x": 0,
  272. "y": 0,
  273. "z": 0
  274. },
  275. "_id": "c4+mLvdUxLyoPdKFBpHf5t"
  276. },
  277. {
  278. "__type__": "cc.UITransform",
  279. "_name": "",
  280. "_objFlags": 0,
  281. "__editorExtras__": {},
  282. "node": {
  283. "__id__": 5
  284. },
  285. "_enabled": true,
  286. "__prefab": null,
  287. "_contentSize": {
  288. "__type__": "cc.Size",
  289. "width": 80,
  290. "height": 80
  291. },
  292. "_anchorPoint": {
  293. "__type__": "cc.Vec2",
  294. "x": 0.5,
  295. "y": 0.5
  296. },
  297. "_id": "ecCZgAdpNEtK+jQTOxtsZL"
  298. },
  299. {
  300. "__type__": "cc.Sprite",
  301. "_name": "",
  302. "_objFlags": 0,
  303. "__editorExtras__": {},
  304. "node": {
  305. "__id__": 5
  306. },
  307. "_enabled": true,
  308. "__prefab": null,
  309. "_customMaterial": null,
  310. "_srcBlendFactor": 2,
  311. "_dstBlendFactor": 4,
  312. "_color": {
  313. "__type__": "cc.Color",
  314. "r": 255,
  315. "g": 255,
  316. "b": 255,
  317. "a": 255
  318. },
  319. "_spriteFrame": {
  320. "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
  321. "__expectedType__": "cc.SpriteFrame"
  322. },
  323. "_type": 0,
  324. "_fillType": 0,
  325. "_sizeMode": 0,
  326. "_fillCenter": {
  327. "__type__": "cc.Vec2",
  328. "x": 0,
  329. "y": 0
  330. },
  331. "_fillStart": 0,
  332. "_fillRange": 0,
  333. "_isTrimmedMode": true,
  334. "_useGrayscale": false,
  335. "_atlas": null,
  336. "_id": "b1StBf4pJEd46QjqJQTfPA"
  337. },
  338. {
  339. "__type__": "cc.CircleCollider2D",
  340. "_name": "",
  341. "_objFlags": 0,
  342. "__editorExtras__": {},
  343. "node": {
  344. "__id__": 5
  345. },
  346. "_enabled": true,
  347. "__prefab": null,
  348. "tag": 0,
  349. "_group": 1,
  350. "_density": 1,
  351. "_sensor": false,
  352. "_friction": 0.2,
  353. "_restitution": 1,
  354. "_offset": {
  355. "__type__": "cc.Vec2",
  356. "x": 0,
  357. "y": 0
  358. },
  359. "_radius": 39,
  360. "_id": "71Hz/hP+5CL4MVaCBxPk9e"
  361. },
  362. {
  363. "__type__": "cc.RigidBody2D",
  364. "_name": "",
  365. "_objFlags": 0,
  366. "__editorExtras__": {},
  367. "node": {
  368. "__id__": 5
  369. },
  370. "_enabled": true,
  371. "__prefab": null,
  372. "enabledContactListener": false,
  373. "bullet": false,
  374. "awakeOnLoad": true,
  375. "_group": 1,
  376. "_type": 2,
  377. "_allowSleep": true,
  378. "_gravityScale": 1,
  379. "_linearDamping": 0,
  380. "_angularDamping": 0,
  381. "_linearVelocity": {
  382. "__type__": "cc.Vec2",
  383. "x": 0,
  384. "y": 0
  385. },
  386. "_angularVelocity": 0,
  387. "_fixedRotation": false,
  388. "_id": "0636eJNhBGpbQKEgoaDQO2"
  389. },
  390. {
  391. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  392. "_name": "",
  393. "_objFlags": 0,
  394. "__editorExtras__": {},
  395. "node": {
  396. "__id__": 5
  397. },
  398. "_enabled": true,
  399. "__prefab": null,
  400. "_id": "a0w1981K9BiK+J8uAxbnEa"
  401. },
  402. {
  403. "__type__": "cc.Node",
  404. "_name": "gizmotagstar",
  405. "_objFlags": 0,
  406. "__editorExtras__": {},
  407. "_parent": {
  408. "__id__": 2
  409. },
  410. "_children": [],
  411. "_active": true,
  412. "_components": [
  413. {
  414. "__id__": 12
  415. },
  416. {
  417. "__id__": 13
  418. },
  419. {
  420. "__id__": 14
  421. },
  422. {
  423. "__id__": 15
  424. },
  425. {
  426. "__id__": 16
  427. }
  428. ],
  429. "_prefab": null,
  430. "_lpos": {
  431. "__type__": "cc.Vec3",
  432. "x": -213.349,
  433. "y": 196.051,
  434. "z": 0
  435. },
  436. "_lrot": {
  437. "__type__": "cc.Quat",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0,
  441. "w": 1
  442. },
  443. "_lscale": {
  444. "__type__": "cc.Vec3",
  445. "x": 1,
  446. "y": 1,
  447. "z": 1
  448. },
  449. "_mobility": 0,
  450. "_layer": 33554432,
  451. "_euler": {
  452. "__type__": "cc.Vec3",
  453. "x": 0,
  454. "y": 0,
  455. "z": 0
  456. },
  457. "_id": "15Bg4+wAVLup4+scvfsTvn"
  458. },
  459. {
  460. "__type__": "cc.UITransform",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "__editorExtras__": {},
  464. "node": {
  465. "__id__": 11
  466. },
  467. "_enabled": true,
  468. "__prefab": null,
  469. "_contentSize": {
  470. "__type__": "cc.Size",
  471. "width": 80,
  472. "height": 80
  473. },
  474. "_anchorPoint": {
  475. "__type__": "cc.Vec2",
  476. "x": 0.5,
  477. "y": 0.5
  478. },
  479. "_id": "ceWgAKuoBC0LLvQ6TaGRpQ"
  480. },
  481. {
  482. "__type__": "cc.Sprite",
  483. "_name": "",
  484. "_objFlags": 0,
  485. "__editorExtras__": {},
  486. "node": {
  487. "__id__": 11
  488. },
  489. "_enabled": true,
  490. "__prefab": null,
  491. "_customMaterial": null,
  492. "_srcBlendFactor": 2,
  493. "_dstBlendFactor": 4,
  494. "_color": {
  495. "__type__": "cc.Color",
  496. "r": 255,
  497. "g": 255,
  498. "b": 255,
  499. "a": 255
  500. },
  501. "_spriteFrame": {
  502. "__uuid__": "1cdf4d11-e65b-412d-991c-2cd428d2033a@f9941",
  503. "__expectedType__": "cc.SpriteFrame"
  504. },
  505. "_type": 0,
  506. "_fillType": 0,
  507. "_sizeMode": 0,
  508. "_fillCenter": {
  509. "__type__": "cc.Vec2",
  510. "x": 0,
  511. "y": 0
  512. },
  513. "_fillStart": 0,
  514. "_fillRange": 0,
  515. "_isTrimmedMode": true,
  516. "_useGrayscale": false,
  517. "_atlas": null,
  518. "_id": "05G1AoPa5HObl/VTzvQ86G"
  519. },
  520. {
  521. "__type__": "cc.CircleCollider2D",
  522. "_name": "",
  523. "_objFlags": 0,
  524. "__editorExtras__": {},
  525. "node": {
  526. "__id__": 11
  527. },
  528. "_enabled": true,
  529. "__prefab": null,
  530. "tag": 0,
  531. "_group": 1,
  532. "_density": 1,
  533. "_sensor": false,
  534. "_friction": 0.2,
  535. "_restitution": 1,
  536. "_offset": {
  537. "__type__": "cc.Vec2",
  538. "x": 0,
  539. "y": 0
  540. },
  541. "_radius": 39,
  542. "_id": "74ADHy41dGLZnz3GRPlNrx"
  543. },
  544. {
  545. "__type__": "cc.RigidBody2D",
  546. "_name": "",
  547. "_objFlags": 0,
  548. "__editorExtras__": {},
  549. "node": {
  550. "__id__": 11
  551. },
  552. "_enabled": true,
  553. "__prefab": null,
  554. "enabledContactListener": false,
  555. "bullet": false,
  556. "awakeOnLoad": true,
  557. "_group": 1,
  558. "_type": 2,
  559. "_allowSleep": true,
  560. "_gravityScale": 1,
  561. "_linearDamping": 0,
  562. "_angularDamping": 0,
  563. "_linearVelocity": {
  564. "__type__": "cc.Vec2",
  565. "x": 0,
  566. "y": 0
  567. },
  568. "_angularVelocity": 0,
  569. "_fixedRotation": false,
  570. "_id": "86XT9bNj5BVIOjEwUVL/jQ"
  571. },
  572. {
  573. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  574. "_name": "",
  575. "_objFlags": 0,
  576. "__editorExtras__": {},
  577. "node": {
  578. "__id__": 11
  579. },
  580. "_enabled": true,
  581. "__prefab": null,
  582. "_id": "04iERwiSRLL6tZj+WXFRDZ"
  583. },
  584. {
  585. "__type__": "cc.Node",
  586. "_name": "tips",
  587. "_objFlags": 0,
  588. "__editorExtras__": {},
  589. "_parent": {
  590. "__id__": 2
  591. },
  592. "_children": [
  593. {
  594. "__id__": 18
  595. }
  596. ],
  597. "_active": true,
  598. "_components": [
  599. {
  600. "__id__": 22
  601. },
  602. {
  603. "__id__": 23
  604. },
  605. {
  606. "__id__": 24
  607. }
  608. ],
  609. "_prefab": null,
  610. "_lpos": {
  611. "__type__": "cc.Vec3",
  612. "x": -334.6265,
  613. "y": 318.289,
  614. "z": 0
  615. },
  616. "_lrot": {
  617. "__type__": "cc.Quat",
  618. "x": 0,
  619. "y": 0,
  620. "z": 0,
  621. "w": 1
  622. },
  623. "_lscale": {
  624. "__type__": "cc.Vec3",
  625. "x": 1,
  626. "y": 1,
  627. "z": 1
  628. },
  629. "_mobility": 0,
  630. "_layer": 33554432,
  631. "_euler": {
  632. "__type__": "cc.Vec3",
  633. "x": 0,
  634. "y": 0,
  635. "z": 0
  636. },
  637. "_id": "d8Y6TGXWFPrYbp9ZswnefX"
  638. },
  639. {
  640. "__type__": "cc.Node",
  641. "_name": "Label",
  642. "_objFlags": 512,
  643. "__editorExtras__": {},
  644. "_parent": {
  645. "__id__": 17
  646. },
  647. "_children": [],
  648. "_active": true,
  649. "_components": [
  650. {
  651. "__id__": 19
  652. },
  653. {
  654. "__id__": 20
  655. },
  656. {
  657. "__id__": 21
  658. }
  659. ],
  660. "_prefab": null,
  661. "_lpos": {
  662. "__type__": "cc.Vec3",
  663. "x": 0,
  664. "y": 0,
  665. "z": 0
  666. },
  667. "_lrot": {
  668. "__type__": "cc.Quat",
  669. "x": 0,
  670. "y": 0,
  671. "z": 0,
  672. "w": 1
  673. },
  674. "_lscale": {
  675. "__type__": "cc.Vec3",
  676. "x": 1,
  677. "y": 1,
  678. "z": 1
  679. },
  680. "_mobility": 0,
  681. "_layer": 33554432,
  682. "_euler": {
  683. "__type__": "cc.Vec3",
  684. "x": 0,
  685. "y": 0,
  686. "z": 0
  687. },
  688. "_id": "6djhu4z/lCLZR9upEOPyYl"
  689. },
  690. {
  691. "__type__": "cc.UITransform",
  692. "_name": "",
  693. "_objFlags": 0,
  694. "__editorExtras__": {},
  695. "node": {
  696. "__id__": 18
  697. },
  698. "_enabled": true,
  699. "__prefab": null,
  700. "_contentSize": {
  701. "__type__": "cc.Size",
  702. "width": 610.747,
  703. "height": 83.422
  704. },
  705. "_anchorPoint": {
  706. "__type__": "cc.Vec2",
  707. "x": 0.5,
  708. "y": 0.5
  709. },
  710. "_id": "036UL+DCFAcoyNHBK+k+/J"
  711. },
  712. {
  713. "__type__": "cc.Label",
  714. "_name": "",
  715. "_objFlags": 0,
  716. "__editorExtras__": {},
  717. "node": {
  718. "__id__": 18
  719. },
  720. "_enabled": true,
  721. "__prefab": null,
  722. "_customMaterial": null,
  723. "_srcBlendFactor": 2,
  724. "_dstBlendFactor": 4,
  725. "_color": {
  726. "__type__": "cc.Color",
  727. "r": 237,
  728. "g": 255,
  729. "b": 105,
  730. "a": 255
  731. },
  732. "_string": "1:地形之间的跟随模式\n2:让地形跟随地表",
  733. "_horizontalAlign": 0,
  734. "_verticalAlign": 1,
  735. "_actualFontSize": 27,
  736. "_fontSize": 20,
  737. "_fontFamily": "Arial",
  738. "_lineHeight": 30,
  739. "_overflow": 2,
  740. "_enableWrapText": true,
  741. "_font": null,
  742. "_isSystemFontUsed": true,
  743. "_spacingX": 0,
  744. "_isItalic": false,
  745. "_isBold": false,
  746. "_isUnderline": false,
  747. "_underlineHeight": 2,
  748. "_cacheMode": 0,
  749. "_enableOutline": false,
  750. "_outlineColor": {
  751. "__type__": "cc.Color",
  752. "r": 0,
  753. "g": 0,
  754. "b": 0,
  755. "a": 255
  756. },
  757. "_outlineWidth": 2,
  758. "_enableShadow": false,
  759. "_shadowColor": {
  760. "__type__": "cc.Color",
  761. "r": 0,
  762. "g": 0,
  763. "b": 0,
  764. "a": 255
  765. },
  766. "_shadowOffset": {
  767. "__type__": "cc.Vec2",
  768. "x": 2,
  769. "y": 2
  770. },
  771. "_shadowBlur": 2,
  772. "_id": "a4U1JTDlFMopLxm5dmA78j"
  773. },
  774. {
  775. "__type__": "cc.Widget",
  776. "_name": "",
  777. "_objFlags": 0,
  778. "__editorExtras__": {},
  779. "node": {
  780. "__id__": 18
  781. },
  782. "_enabled": true,
  783. "__prefab": null,
  784. "_alignFlags": 45,
  785. "_target": null,
  786. "_left": 0,
  787. "_right": 0,
  788. "_top": 0,
  789. "_bottom": 0,
  790. "_horizontalCenter": 0,
  791. "_verticalCenter": 0,
  792. "_isAbsLeft": true,
  793. "_isAbsRight": true,
  794. "_isAbsTop": true,
  795. "_isAbsBottom": true,
  796. "_isAbsHorizontalCenter": true,
  797. "_isAbsVerticalCenter": true,
  798. "_originalWidth": 42.255859375,
  799. "_originalHeight": 50.4,
  800. "_alignMode": 2,
  801. "_lockFlags": 0,
  802. "_id": "7dc+K/jW9ItaiiUkUrpN1g"
  803. },
  804. {
  805. "__type__": "cc.UITransform",
  806. "_name": "",
  807. "_objFlags": 0,
  808. "__editorExtras__": {},
  809. "node": {
  810. "__id__": 17
  811. },
  812. "_enabled": true,
  813. "__prefab": null,
  814. "_contentSize": {
  815. "__type__": "cc.Size",
  816. "width": 610.747,
  817. "height": 83.422
  818. },
  819. "_anchorPoint": {
  820. "__type__": "cc.Vec2",
  821. "x": 0.5,
  822. "y": 0.5
  823. },
  824. "_id": "2d3E0GzM5I0ZvVk3EQ5PYU"
  825. },
  826. {
  827. "__type__": "cc.Sprite",
  828. "_name": "",
  829. "_objFlags": 0,
  830. "__editorExtras__": {},
  831. "node": {
  832. "__id__": 17
  833. },
  834. "_enabled": true,
  835. "__prefab": null,
  836. "_customMaterial": null,
  837. "_srcBlendFactor": 2,
  838. "_dstBlendFactor": 4,
  839. "_color": {
  840. "__type__": "cc.Color",
  841. "r": 0,
  842. "g": 0,
  843. "b": 0,
  844. "a": 255
  845. },
  846. "_spriteFrame": {
  847. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  848. "__expectedType__": "cc.SpriteFrame"
  849. },
  850. "_type": 0,
  851. "_fillType": 0,
  852. "_sizeMode": 0,
  853. "_fillCenter": {
  854. "__type__": "cc.Vec2",
  855. "x": 0,
  856. "y": 0
  857. },
  858. "_fillStart": 0,
  859. "_fillRange": 0,
  860. "_isTrimmedMode": true,
  861. "_useGrayscale": false,
  862. "_atlas": null,
  863. "_id": "4eOmjkdIpPdKmTe05dw2ih"
  864. },
  865. {
  866. "__type__": "cc.Widget",
  867. "_name": "",
  868. "_objFlags": 0,
  869. "__editorExtras__": {},
  870. "node": {
  871. "__id__": 17
  872. },
  873. "_enabled": true,
  874. "__prefab": null,
  875. "_alignFlags": 9,
  876. "_target": null,
  877. "_left": 0,
  878. "_right": 0,
  879. "_top": 0,
  880. "_bottom": 588.5235,
  881. "_horizontalCenter": 0,
  882. "_verticalCenter": 0,
  883. "_isAbsLeft": true,
  884. "_isAbsRight": true,
  885. "_isAbsTop": true,
  886. "_isAbsBottom": true,
  887. "_isAbsHorizontalCenter": true,
  888. "_isAbsVerticalCenter": true,
  889. "_originalWidth": 757.8929999999999,
  890. "_originalHeight": 58.265,
  891. "_alignMode": 2,
  892. "_lockFlags": 0,
  893. "_id": "6dEqSC+EhOHJnUAek1P7xc"
  894. },
  895. {
  896. "__type__": "cc.Node",
  897. "_name": "地形",
  898. "_objFlags": 0,
  899. "__editorExtras__": {},
  900. "_parent": {
  901. "__id__": 2
  902. },
  903. "_children": [],
  904. "_active": true,
  905. "_components": [
  906. {
  907. "__id__": 26
  908. },
  909. {
  910. "__id__": 27
  911. },
  912. {
  913. "__id__": 29
  914. },
  915. {
  916. "__id__": 74
  917. }
  918. ],
  919. "_prefab": null,
  920. "_lpos": {
  921. "__type__": "cc.Vec3",
  922. "x": -58.152,
  923. "y": -125.331,
  924. "z": 0
  925. },
  926. "_lrot": {
  927. "__type__": "cc.Quat",
  928. "x": 0,
  929. "y": 0,
  930. "z": 0,
  931. "w": 1
  932. },
  933. "_lscale": {
  934. "__type__": "cc.Vec3",
  935. "x": 1,
  936. "y": 1,
  937. "z": 1
  938. },
  939. "_mobility": 0,
  940. "_layer": 33554432,
  941. "_euler": {
  942. "__type__": "cc.Vec3",
  943. "x": 0,
  944. "y": 0,
  945. "z": 0
  946. },
  947. "_id": "8fBvYZSytBMaJvjRTnw3a9"
  948. },
  949. {
  950. "__type__": "cc.UITransform",
  951. "_name": "",
  952. "_objFlags": 0,
  953. "__editorExtras__": {},
  954. "node": {
  955. "__id__": 25
  956. },
  957. "_enabled": true,
  958. "__prefab": null,
  959. "_contentSize": {
  960. "__type__": "cc.Size",
  961. "width": 100,
  962. "height": 100
  963. },
  964. "_anchorPoint": {
  965. "__type__": "cc.Vec2",
  966. "x": 0.5,
  967. "y": 0.5
  968. },
  969. "_id": "1eib71K9JNk5vccBTqOSbR"
  970. },
  971. {
  972. "__type__": "cc.MeshRenderer",
  973. "_name": "",
  974. "_objFlags": 0,
  975. "__editorExtras__": {},
  976. "node": {
  977. "__id__": 25
  978. },
  979. "_enabled": true,
  980. "__prefab": null,
  981. "_materials": [
  982. null
  983. ],
  984. "_visFlags": 0,
  985. "bakeSettings": {
  986. "__id__": 28
  987. },
  988. "_mesh": null,
  989. "_shadowCastingMode": 0,
  990. "_shadowReceivingMode": 1,
  991. "_shadowBias": 0,
  992. "_shadowNormalBias": 0,
  993. "_reflectionProbeId": -1,
  994. "_reflectionProbeBlendId": -1,
  995. "_reflectionProbeBlendWeight": 0,
  996. "_enabledGlobalStandardSkinObject": false,
  997. "_enableMorph": true,
  998. "_id": "daZqoWRqlBRIxS+cBntYO2"
  999. },
  1000. {
  1001. "__type__": "cc.ModelBakeSettings",
  1002. "texture": null,
  1003. "uvParam": {
  1004. "__type__": "cc.Vec4",
  1005. "x": 0,
  1006. "y": 0,
  1007. "z": 0,
  1008. "w": 0
  1009. },
  1010. "_bakeable": false,
  1011. "_castShadow": false,
  1012. "_receiveShadow": false,
  1013. "_recieveShadow": false,
  1014. "_lightmapSize": 64,
  1015. "_useLightProbe": false,
  1016. "_bakeToLightProbe": true,
  1017. "_reflectionProbeType": 0,
  1018. "_bakeToReflectionProbe": true
  1019. },
  1020. {
  1021. "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
  1022. "_name": "",
  1023. "_objFlags": 0,
  1024. "__editorExtras__": {},
  1025. "node": {
  1026. "__id__": 25
  1027. },
  1028. "_enabled": true,
  1029. "__prefab": null,
  1030. "_syncOnOff": true,
  1031. "_syncTarget": {
  1032. "__id__": 30
  1033. },
  1034. "_renderMode": 1,
  1035. "_renderUVMode": 0,
  1036. "_spEffectAsset": {
  1037. "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
  1038. "__expectedType__": "cc.EffectAsset"
  1039. },
  1040. "_spFrame": {
  1041. "__uuid__": "9879776e-e258-4951-8d51-dac6a3c2ab45@f9941",
  1042. "__expectedType__": "cc.SpriteFrame"
  1043. },
  1044. "_headTailFixedOnOff": false,
  1045. "_headTailFrame": null,
  1046. "_updownFix": false,
  1047. "_thickness": 0,
  1048. "_offset": {
  1049. "__type__": "cc.Vec3",
  1050. "x": 0,
  1051. "y": 0,
  1052. "z": 0
  1053. },
  1054. "_smoothness": 16,
  1055. "_headTailCloseOnoff": false,
  1056. "_innerMeshSprite": null,
  1057. "_physcisOnOff": false,
  1058. "_physicsThickness": 0,
  1059. "_offsetCollider": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 0,
  1062. "y": 0,
  1063. "z": 0
  1064. },
  1065. "_visibleOnOff": true,
  1066. "_sortInXDirection": false,
  1067. "_editWhenRun": true,
  1068. "_gizmotag": {
  1069. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1070. "__expectedType__": "cc.SpriteFrame"
  1071. },
  1072. "_gizmoColor": {
  1073. "__type__": "cc.Color",
  1074. "r": 123,
  1075. "g": 80,
  1076. "b": 67,
  1077. "a": 200
  1078. },
  1079. "_id": "35wsUeQgZFcKxp6JwL47of"
  1080. },
  1081. {
  1082. "__type__": "cc.Node",
  1083. "_name": "地表",
  1084. "_objFlags": 0,
  1085. "__editorExtras__": {},
  1086. "_parent": {
  1087. "__id__": 2
  1088. },
  1089. "_children": [
  1090. {
  1091. "__id__": 31
  1092. },
  1093. {
  1094. "__id__": 36
  1095. },
  1096. {
  1097. "__id__": 41
  1098. },
  1099. {
  1100. "__id__": 46
  1101. },
  1102. {
  1103. "__id__": 51
  1104. },
  1105. {
  1106. "__id__": 56
  1107. },
  1108. {
  1109. "__id__": 61
  1110. },
  1111. {
  1112. "__id__": 66
  1113. }
  1114. ],
  1115. "_active": true,
  1116. "_components": [
  1117. {
  1118. "__id__": 69
  1119. },
  1120. {
  1121. "__id__": 70
  1122. },
  1123. {
  1124. "__id__": 72
  1125. },
  1126. {
  1127. "__id__": 73
  1128. }
  1129. ],
  1130. "_prefab": null,
  1131. "_lpos": {
  1132. "__type__": "cc.Vec3",
  1133. "x": -58.152,
  1134. "y": -125.331,
  1135. "z": 0
  1136. },
  1137. "_lrot": {
  1138. "__type__": "cc.Quat",
  1139. "x": 0,
  1140. "y": 0,
  1141. "z": 0,
  1142. "w": 1
  1143. },
  1144. "_lscale": {
  1145. "__type__": "cc.Vec3",
  1146. "x": 1,
  1147. "y": 1,
  1148. "z": 1
  1149. },
  1150. "_mobility": 0,
  1151. "_layer": 33554432,
  1152. "_euler": {
  1153. "__type__": "cc.Vec3",
  1154. "x": 0,
  1155. "y": 0,
  1156. "z": 0
  1157. },
  1158. "_id": "b4Gn2rxU5B4oDDOUzuUdEf"
  1159. },
  1160. {
  1161. "__type__": "cc.Node",
  1162. "_name": "gizmo_1",
  1163. "_objFlags": 0,
  1164. "__editorExtras__": {},
  1165. "_parent": {
  1166. "__id__": 30
  1167. },
  1168. "_children": [],
  1169. "_active": true,
  1170. "_components": [
  1171. {
  1172. "__id__": 32
  1173. },
  1174. {
  1175. "__id__": 33
  1176. },
  1177. {
  1178. "__id__": 34
  1179. },
  1180. {
  1181. "__id__": 35
  1182. }
  1183. ],
  1184. "_prefab": null,
  1185. "_lpos": {
  1186. "__type__": "cc.Vec3",
  1187. "x": -1062.45,
  1188. "y": 334.575,
  1189. "z": 0
  1190. },
  1191. "_lrot": {
  1192. "__type__": "cc.Quat",
  1193. "x": 0,
  1194. "y": 0,
  1195. "z": 0.15744999262687437,
  1196. "w": -0.9875269615670234
  1197. },
  1198. "_lscale": {
  1199. "__type__": "cc.Vec3",
  1200. "x": 1,
  1201. "y": 1,
  1202. "z": 1
  1203. },
  1204. "_mobility": 0,
  1205. "_layer": 1073741824,
  1206. "_euler": {
  1207. "__type__": "cc.Vec3",
  1208. "x": 0,
  1209. "y": 0,
  1210. "z": 341.8821689169717
  1211. },
  1212. "_id": "78uO0MFldKL6BkjRgiGBiv"
  1213. },
  1214. {
  1215. "__type__": "cc.UIOpacity",
  1216. "_name": "",
  1217. "_objFlags": 0,
  1218. "__editorExtras__": {},
  1219. "node": {
  1220. "__id__": 31
  1221. },
  1222. "_enabled": true,
  1223. "__prefab": null,
  1224. "_opacity": 255,
  1225. "_id": "62mKr/9OxNeqtJI0AHio1B"
  1226. },
  1227. {
  1228. "__type__": "cc.UITransform",
  1229. "_name": "",
  1230. "_objFlags": 0,
  1231. "__editorExtras__": {},
  1232. "node": {
  1233. "__id__": 31
  1234. },
  1235. "_enabled": true,
  1236. "__prefab": null,
  1237. "_contentSize": {
  1238. "__type__": "cc.Size",
  1239. "width": 80,
  1240. "height": 80
  1241. },
  1242. "_anchorPoint": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0.5,
  1245. "y": 0.5
  1246. },
  1247. "_id": "57zJlvFPxFiZ1tcx+933Q6"
  1248. },
  1249. {
  1250. "__type__": "cc.Sprite",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "__editorExtras__": {},
  1254. "node": {
  1255. "__id__": 31
  1256. },
  1257. "_enabled": true,
  1258. "__prefab": null,
  1259. "_customMaterial": null,
  1260. "_srcBlendFactor": 2,
  1261. "_dstBlendFactor": 4,
  1262. "_color": {
  1263. "__type__": "cc.Color",
  1264. "r": 255,
  1265. "g": 114,
  1266. "b": 14,
  1267. "a": 200
  1268. },
  1269. "_spriteFrame": {
  1270. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1271. "__expectedType__": "cc.SpriteFrame"
  1272. },
  1273. "_type": 0,
  1274. "_fillType": 0,
  1275. "_sizeMode": 0,
  1276. "_fillCenter": {
  1277. "__type__": "cc.Vec2",
  1278. "x": 0,
  1279. "y": 0
  1280. },
  1281. "_fillStart": 0,
  1282. "_fillRange": 0,
  1283. "_isTrimmedMode": true,
  1284. "_useGrayscale": false,
  1285. "_atlas": null,
  1286. "_id": "c3+JHi7mRAHLc7euuAwoUs"
  1287. },
  1288. {
  1289. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1290. "_name": "",
  1291. "_objFlags": 0,
  1292. "__editorExtras__": {},
  1293. "node": {
  1294. "__id__": 31
  1295. },
  1296. "_enabled": true,
  1297. "__prefab": null,
  1298. "_id": "ecufxIbddImKOCS/Dr5U7t"
  1299. },
  1300. {
  1301. "__type__": "cc.Node",
  1302. "_name": "gizmo_2",
  1303. "_objFlags": 0,
  1304. "__editorExtras__": {},
  1305. "_parent": {
  1306. "__id__": 30
  1307. },
  1308. "_children": [],
  1309. "_active": true,
  1310. "_components": [
  1311. {
  1312. "__id__": 37
  1313. },
  1314. {
  1315. "__id__": 38
  1316. },
  1317. {
  1318. "__id__": 39
  1319. },
  1320. {
  1321. "__id__": 40
  1322. }
  1323. ],
  1324. "_prefab": null,
  1325. "_lpos": {
  1326. "__type__": "cc.Vec3",
  1327. "x": -390.783,
  1328. "y": 114.809,
  1329. "z": 0
  1330. },
  1331. "_lrot": {
  1332. "__type__": "cc.Quat",
  1333. "x": 0,
  1334. "y": 0,
  1335. "z": 0.6605739523085963,
  1336. "w": -0.7507609829575591
  1337. },
  1338. "_lscale": {
  1339. "__type__": "cc.Vec3",
  1340. "x": 1,
  1341. "y": 1,
  1342. "z": 1
  1343. },
  1344. "_mobility": 0,
  1345. "_layer": 1073741824,
  1346. "_euler": {
  1347. "__type__": "cc.Vec3",
  1348. "x": 0,
  1349. "y": 0,
  1350. "z": 277.3126792865012
  1351. },
  1352. "_id": "a4fOV4CTxAlKigP/i/p2Xb"
  1353. },
  1354. {
  1355. "__type__": "cc.UIOpacity",
  1356. "_name": "",
  1357. "_objFlags": 0,
  1358. "__editorExtras__": {},
  1359. "node": {
  1360. "__id__": 36
  1361. },
  1362. "_enabled": true,
  1363. "__prefab": null,
  1364. "_opacity": 255,
  1365. "_id": "1cLnY9yKlK8pPEidDL27Ui"
  1366. },
  1367. {
  1368. "__type__": "cc.UITransform",
  1369. "_name": "",
  1370. "_objFlags": 0,
  1371. "__editorExtras__": {},
  1372. "node": {
  1373. "__id__": 36
  1374. },
  1375. "_enabled": true,
  1376. "__prefab": null,
  1377. "_contentSize": {
  1378. "__type__": "cc.Size",
  1379. "width": 80,
  1380. "height": 80
  1381. },
  1382. "_anchorPoint": {
  1383. "__type__": "cc.Vec2",
  1384. "x": 0.5,
  1385. "y": 0.5
  1386. },
  1387. "_id": "72t2/W8axKy7DzlihJuGVi"
  1388. },
  1389. {
  1390. "__type__": "cc.Sprite",
  1391. "_name": "",
  1392. "_objFlags": 0,
  1393. "__editorExtras__": {},
  1394. "node": {
  1395. "__id__": 36
  1396. },
  1397. "_enabled": true,
  1398. "__prefab": null,
  1399. "_customMaterial": null,
  1400. "_srcBlendFactor": 2,
  1401. "_dstBlendFactor": 4,
  1402. "_color": {
  1403. "__type__": "cc.Color",
  1404. "r": 255,
  1405. "g": 114,
  1406. "b": 14,
  1407. "a": 200
  1408. },
  1409. "_spriteFrame": {
  1410. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1411. "__expectedType__": "cc.SpriteFrame"
  1412. },
  1413. "_type": 0,
  1414. "_fillType": 0,
  1415. "_sizeMode": 0,
  1416. "_fillCenter": {
  1417. "__type__": "cc.Vec2",
  1418. "x": 0,
  1419. "y": 0
  1420. },
  1421. "_fillStart": 0,
  1422. "_fillRange": 0,
  1423. "_isTrimmedMode": true,
  1424. "_useGrayscale": false,
  1425. "_atlas": null,
  1426. "_id": "4c7viII5JDTpNk+HLrbQvc"
  1427. },
  1428. {
  1429. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1430. "_name": "",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "node": {
  1434. "__id__": 36
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": null,
  1438. "_id": "feop+bqApKKKPToLlzPiMM"
  1439. },
  1440. {
  1441. "__type__": "cc.Node",
  1442. "_name": "gizmo_6",
  1443. "_objFlags": 0,
  1444. "__editorExtras__": {},
  1445. "_parent": {
  1446. "__id__": 30
  1447. },
  1448. "_children": [],
  1449. "_active": true,
  1450. "_components": [
  1451. {
  1452. "__id__": 42
  1453. },
  1454. {
  1455. "__id__": 43
  1456. },
  1457. {
  1458. "__id__": 44
  1459. },
  1460. {
  1461. "__id__": 45
  1462. }
  1463. ],
  1464. "_prefab": null,
  1465. "_lpos": {
  1466. "__type__": "cc.Vec3",
  1467. "x": -360.816,
  1468. "y": -118.71,
  1469. "z": 0
  1470. },
  1471. "_lrot": {
  1472. "__type__": "cc.Quat",
  1473. "x": 0,
  1474. "y": 0,
  1475. "z": 0.009877283041482375,
  1476. "w": -0.9999512184500394
  1477. },
  1478. "_lscale": {
  1479. "__type__": "cc.Vec3",
  1480. "x": 1,
  1481. "y": 1,
  1482. "z": 1
  1483. },
  1484. "_mobility": 0,
  1485. "_layer": 1073741824,
  1486. "_euler": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 358.8681283324559
  1491. },
  1492. "_id": "e5kkg/r1hPA6sIzSiz7vrk"
  1493. },
  1494. {
  1495. "__type__": "cc.UIOpacity",
  1496. "_name": "",
  1497. "_objFlags": 0,
  1498. "__editorExtras__": {},
  1499. "node": {
  1500. "__id__": 41
  1501. },
  1502. "_enabled": true,
  1503. "__prefab": null,
  1504. "_opacity": 255,
  1505. "_id": "86hcTglQ5JNIrEsmDaAnDO"
  1506. },
  1507. {
  1508. "__type__": "cc.UITransform",
  1509. "_name": "",
  1510. "_objFlags": 0,
  1511. "__editorExtras__": {},
  1512. "node": {
  1513. "__id__": 41
  1514. },
  1515. "_enabled": true,
  1516. "__prefab": null,
  1517. "_contentSize": {
  1518. "__type__": "cc.Size",
  1519. "width": 80,
  1520. "height": 80
  1521. },
  1522. "_anchorPoint": {
  1523. "__type__": "cc.Vec2",
  1524. "x": 0.5,
  1525. "y": 0.5
  1526. },
  1527. "_id": "f06KFMgapL3qJ+vIRedBZK"
  1528. },
  1529. {
  1530. "__type__": "cc.Sprite",
  1531. "_name": "",
  1532. "_objFlags": 0,
  1533. "__editorExtras__": {},
  1534. "node": {
  1535. "__id__": 41
  1536. },
  1537. "_enabled": true,
  1538. "__prefab": null,
  1539. "_customMaterial": null,
  1540. "_srcBlendFactor": 2,
  1541. "_dstBlendFactor": 4,
  1542. "_color": {
  1543. "__type__": "cc.Color",
  1544. "r": 255,
  1545. "g": 114,
  1546. "b": 14,
  1547. "a": 200
  1548. },
  1549. "_spriteFrame": {
  1550. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1551. "__expectedType__": "cc.SpriteFrame"
  1552. },
  1553. "_type": 0,
  1554. "_fillType": 0,
  1555. "_sizeMode": 0,
  1556. "_fillCenter": {
  1557. "__type__": "cc.Vec2",
  1558. "x": 0,
  1559. "y": 0
  1560. },
  1561. "_fillStart": 0,
  1562. "_fillRange": 0,
  1563. "_isTrimmedMode": true,
  1564. "_useGrayscale": false,
  1565. "_atlas": null,
  1566. "_id": "26AZvqaypOHo/oZxrIPndZ"
  1567. },
  1568. {
  1569. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "__editorExtras__": {},
  1573. "node": {
  1574. "__id__": 41
  1575. },
  1576. "_enabled": true,
  1577. "__prefab": null,
  1578. "_id": "4f7aq5vk5GYbgAoks4V8P+"
  1579. },
  1580. {
  1581. "__type__": "cc.Node",
  1582. "_name": "gizmo_3",
  1583. "_objFlags": 0,
  1584. "__editorExtras__": {},
  1585. "_parent": {
  1586. "__id__": 30
  1587. },
  1588. "_children": [],
  1589. "_active": true,
  1590. "_components": [
  1591. {
  1592. "__id__": 47
  1593. },
  1594. {
  1595. "__id__": 48
  1596. },
  1597. {
  1598. "__id__": 49
  1599. },
  1600. {
  1601. "__id__": 50
  1602. }
  1603. ],
  1604. "_prefab": null,
  1605. "_lpos": {
  1606. "__type__": "cc.Vec3",
  1607. "x": 160,
  1608. "y": -129,
  1609. "z": 0
  1610. },
  1611. "_lrot": {
  1612. "__type__": "cc.Quat",
  1613. "x": 0,
  1614. "y": 0,
  1615. "z": 0.039585859667575676,
  1616. "w": 0.9992161726645435
  1617. },
  1618. "_lscale": {
  1619. "__type__": "cc.Vec3",
  1620. "x": 1,
  1621. "y": 1,
  1622. "z": 1
  1623. },
  1624. "_mobility": 0,
  1625. "_layer": 1073741824,
  1626. "_euler": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 0,
  1629. "y": 0,
  1630. "z": 4.537390947011033
  1631. },
  1632. "_id": "4cJ5rJwcBNFoTNUPU9rngc"
  1633. },
  1634. {
  1635. "__type__": "cc.UIOpacity",
  1636. "_name": "",
  1637. "_objFlags": 0,
  1638. "__editorExtras__": {},
  1639. "node": {
  1640. "__id__": 46
  1641. },
  1642. "_enabled": true,
  1643. "__prefab": null,
  1644. "_opacity": 255,
  1645. "_id": "d5YNPYKJZAZoNm7kMMII80"
  1646. },
  1647. {
  1648. "__type__": "cc.UITransform",
  1649. "_name": "",
  1650. "_objFlags": 0,
  1651. "__editorExtras__": {},
  1652. "node": {
  1653. "__id__": 46
  1654. },
  1655. "_enabled": true,
  1656. "__prefab": null,
  1657. "_contentSize": {
  1658. "__type__": "cc.Size",
  1659. "width": 80,
  1660. "height": 80
  1661. },
  1662. "_anchorPoint": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0.5,
  1665. "y": 0.5
  1666. },
  1667. "_id": "08tVYBnetBrKjNH7+pj6VL"
  1668. },
  1669. {
  1670. "__type__": "cc.Sprite",
  1671. "_name": "",
  1672. "_objFlags": 0,
  1673. "__editorExtras__": {},
  1674. "node": {
  1675. "__id__": 46
  1676. },
  1677. "_enabled": true,
  1678. "__prefab": null,
  1679. "_customMaterial": null,
  1680. "_srcBlendFactor": 2,
  1681. "_dstBlendFactor": 4,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 255,
  1685. "g": 114,
  1686. "b": 14,
  1687. "a": 200
  1688. },
  1689. "_spriteFrame": {
  1690. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1691. "__expectedType__": "cc.SpriteFrame"
  1692. },
  1693. "_type": 0,
  1694. "_fillType": 0,
  1695. "_sizeMode": 0,
  1696. "_fillCenter": {
  1697. "__type__": "cc.Vec2",
  1698. "x": 0,
  1699. "y": 0
  1700. },
  1701. "_fillStart": 0,
  1702. "_fillRange": 0,
  1703. "_isTrimmedMode": true,
  1704. "_useGrayscale": false,
  1705. "_atlas": null,
  1706. "_id": "26bx4VnCtJ2qZ1b1pb94Vy"
  1707. },
  1708. {
  1709. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1710. "_name": "",
  1711. "_objFlags": 0,
  1712. "__editorExtras__": {},
  1713. "node": {
  1714. "__id__": 46
  1715. },
  1716. "_enabled": true,
  1717. "__prefab": null,
  1718. "_id": "bdBFRccVBK66VDfIwapOhg"
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "gizmo_5",
  1723. "_objFlags": 0,
  1724. "__editorExtras__": {},
  1725. "_parent": {
  1726. "__id__": 30
  1727. },
  1728. "_children": [],
  1729. "_active": true,
  1730. "_components": [
  1731. {
  1732. "__id__": 52
  1733. },
  1734. {
  1735. "__id__": 53
  1736. },
  1737. {
  1738. "__id__": 54
  1739. },
  1740. {
  1741. "__id__": 55
  1742. }
  1743. ],
  1744. "_prefab": null,
  1745. "_lpos": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 531.87,
  1748. "y": -99.489,
  1749. "z": 0
  1750. },
  1751. "_lrot": {
  1752. "__type__": "cc.Quat",
  1753. "x": 0,
  1754. "y": 0,
  1755. "z": 0.8242481137370635,
  1756. "w": 0.5662287938641878
  1757. },
  1758. "_lscale": {
  1759. "__type__": "cc.Vec3",
  1760. "x": 1,
  1761. "y": 1,
  1762. "z": 1
  1763. },
  1764. "_mobility": 0,
  1765. "_layer": 1073741824,
  1766. "_euler": {
  1767. "__type__": "cc.Vec3",
  1768. "x": 0,
  1769. "y": 0,
  1770. "z": 111.02467094621659
  1771. },
  1772. "_id": "65K+jS2JRJ06UoG6HsN8pU"
  1773. },
  1774. {
  1775. "__type__": "cc.UIOpacity",
  1776. "_name": "",
  1777. "_objFlags": 0,
  1778. "__editorExtras__": {},
  1779. "node": {
  1780. "__id__": 51
  1781. },
  1782. "_enabled": true,
  1783. "__prefab": null,
  1784. "_opacity": 255,
  1785. "_id": "0dx7b05OdOX57qH3PqK02U"
  1786. },
  1787. {
  1788. "__type__": "cc.UITransform",
  1789. "_name": "",
  1790. "_objFlags": 0,
  1791. "__editorExtras__": {},
  1792. "node": {
  1793. "__id__": 51
  1794. },
  1795. "_enabled": true,
  1796. "__prefab": null,
  1797. "_contentSize": {
  1798. "__type__": "cc.Size",
  1799. "width": 80,
  1800. "height": 80
  1801. },
  1802. "_anchorPoint": {
  1803. "__type__": "cc.Vec2",
  1804. "x": 0.5,
  1805. "y": 0.5
  1806. },
  1807. "_id": "fervJ5IJxOF6tWzk1fMlSq"
  1808. },
  1809. {
  1810. "__type__": "cc.Sprite",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "__editorExtras__": {},
  1814. "node": {
  1815. "__id__": 51
  1816. },
  1817. "_enabled": true,
  1818. "__prefab": null,
  1819. "_customMaterial": null,
  1820. "_srcBlendFactor": 2,
  1821. "_dstBlendFactor": 4,
  1822. "_color": {
  1823. "__type__": "cc.Color",
  1824. "r": 255,
  1825. "g": 114,
  1826. "b": 14,
  1827. "a": 200
  1828. },
  1829. "_spriteFrame": {
  1830. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1831. "__expectedType__": "cc.SpriteFrame"
  1832. },
  1833. "_type": 0,
  1834. "_fillType": 0,
  1835. "_sizeMode": 0,
  1836. "_fillCenter": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0,
  1839. "y": 0
  1840. },
  1841. "_fillStart": 0,
  1842. "_fillRange": 0,
  1843. "_isTrimmedMode": true,
  1844. "_useGrayscale": false,
  1845. "_atlas": null,
  1846. "_id": "91Zm/XOTlMAo0eSu2kBhxv"
  1847. },
  1848. {
  1849. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1850. "_name": "",
  1851. "_objFlags": 0,
  1852. "__editorExtras__": {},
  1853. "node": {
  1854. "__id__": 51
  1855. },
  1856. "_enabled": true,
  1857. "__prefab": null,
  1858. "_id": "66/BllZ4hCL7oi5m8WMZJO"
  1859. },
  1860. {
  1861. "__type__": "cc.Node",
  1862. "_name": "gizmo_4",
  1863. "_objFlags": 0,
  1864. "__editorExtras__": {},
  1865. "_parent": {
  1866. "__id__": 30
  1867. },
  1868. "_children": [],
  1869. "_active": true,
  1870. "_components": [
  1871. {
  1872. "__id__": 57
  1873. },
  1874. {
  1875. "__id__": 58
  1876. },
  1877. {
  1878. "__id__": 59
  1879. },
  1880. {
  1881. "__id__": 60
  1882. }
  1883. ],
  1884. "_prefab": null,
  1885. "_lpos": {
  1886. "__type__": "cc.Vec3",
  1887. "x": 430.838,
  1888. "y": 163.37,
  1889. "z": 0
  1890. },
  1891. "_lrot": {
  1892. "__type__": "cc.Quat",
  1893. "x": 0,
  1894. "y": 0,
  1895. "z": 0.17899175634331382,
  1896. "w": 0.9838505735939456
  1897. },
  1898. "_lscale": {
  1899. "__type__": "cc.Vec3",
  1900. "x": 1,
  1901. "y": 1,
  1902. "z": 1
  1903. },
  1904. "_mobility": 0,
  1905. "_layer": 1073741824,
  1906. "_euler": {
  1907. "__type__": "cc.Vec3",
  1908. "x": 0,
  1909. "y": 0,
  1910. "z": 20.622075958277264
  1911. },
  1912. "_id": "c9089GS9JNHZ1+mKmURymY"
  1913. },
  1914. {
  1915. "__type__": "cc.UIOpacity",
  1916. "_name": "",
  1917. "_objFlags": 0,
  1918. "__editorExtras__": {},
  1919. "node": {
  1920. "__id__": 56
  1921. },
  1922. "_enabled": true,
  1923. "__prefab": null,
  1924. "_opacity": 255,
  1925. "_id": "67OrtXrRhPTLraurMxVM8d"
  1926. },
  1927. {
  1928. "__type__": "cc.UITransform",
  1929. "_name": "",
  1930. "_objFlags": 0,
  1931. "__editorExtras__": {},
  1932. "node": {
  1933. "__id__": 56
  1934. },
  1935. "_enabled": true,
  1936. "__prefab": null,
  1937. "_contentSize": {
  1938. "__type__": "cc.Size",
  1939. "width": 80,
  1940. "height": 80
  1941. },
  1942. "_anchorPoint": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0.5,
  1945. "y": 0.5
  1946. },
  1947. "_id": "de+zPPZOFOYZ5STqglEMpd"
  1948. },
  1949. {
  1950. "__type__": "cc.Sprite",
  1951. "_name": "",
  1952. "_objFlags": 0,
  1953. "__editorExtras__": {},
  1954. "node": {
  1955. "__id__": 56
  1956. },
  1957. "_enabled": true,
  1958. "__prefab": null,
  1959. "_customMaterial": null,
  1960. "_srcBlendFactor": 2,
  1961. "_dstBlendFactor": 4,
  1962. "_color": {
  1963. "__type__": "cc.Color",
  1964. "r": 255,
  1965. "g": 114,
  1966. "b": 14,
  1967. "a": 200
  1968. },
  1969. "_spriteFrame": {
  1970. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  1971. "__expectedType__": "cc.SpriteFrame"
  1972. },
  1973. "_type": 0,
  1974. "_fillType": 0,
  1975. "_sizeMode": 0,
  1976. "_fillCenter": {
  1977. "__type__": "cc.Vec2",
  1978. "x": 0,
  1979. "y": 0
  1980. },
  1981. "_fillStart": 0,
  1982. "_fillRange": 0,
  1983. "_isTrimmedMode": true,
  1984. "_useGrayscale": false,
  1985. "_atlas": null,
  1986. "_id": "d2OUG/oypPmo8u64yoU1ee"
  1987. },
  1988. {
  1989. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  1990. "_name": "",
  1991. "_objFlags": 0,
  1992. "__editorExtras__": {},
  1993. "node": {
  1994. "__id__": 56
  1995. },
  1996. "_enabled": true,
  1997. "__prefab": null,
  1998. "_id": "15vHK/By1DxqbJBPXygucz"
  1999. },
  2000. {
  2001. "__type__": "cc.Node",
  2002. "_name": "gizmo_7",
  2003. "_objFlags": 0,
  2004. "__editorExtras__": {},
  2005. "_parent": {
  2006. "__id__": 30
  2007. },
  2008. "_children": [],
  2009. "_active": true,
  2010. "_components": [
  2011. {
  2012. "__id__": 62
  2013. },
  2014. {
  2015. "__id__": 63
  2016. },
  2017. {
  2018. "__id__": 64
  2019. },
  2020. {
  2021. "__id__": 65
  2022. }
  2023. ],
  2024. "_prefab": null,
  2025. "_lpos": {
  2026. "__type__": "cc.Vec3",
  2027. "x": 973.673,
  2028. "y": 367.647,
  2029. "z": 0
  2030. },
  2031. "_lrot": {
  2032. "__type__": "cc.Quat",
  2033. "x": 0,
  2034. "y": 0,
  2035. "z": 0,
  2036. "w": 1
  2037. },
  2038. "_lscale": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 1,
  2041. "y": 1,
  2042. "z": 1
  2043. },
  2044. "_mobility": 0,
  2045. "_layer": 1073741824,
  2046. "_euler": {
  2047. "__type__": "cc.Vec3",
  2048. "x": 0,
  2049. "y": 0,
  2050. "z": 0
  2051. },
  2052. "_id": "472BCErrFJDJdmXd6sZvkc"
  2053. },
  2054. {
  2055. "__type__": "cc.UIOpacity",
  2056. "_name": "",
  2057. "_objFlags": 0,
  2058. "__editorExtras__": {},
  2059. "node": {
  2060. "__id__": 61
  2061. },
  2062. "_enabled": true,
  2063. "__prefab": null,
  2064. "_opacity": 255,
  2065. "_id": "29BSIDfehMJ4E6B2rFbA9P"
  2066. },
  2067. {
  2068. "__type__": "cc.UITransform",
  2069. "_name": "",
  2070. "_objFlags": 0,
  2071. "__editorExtras__": {},
  2072. "node": {
  2073. "__id__": 61
  2074. },
  2075. "_enabled": true,
  2076. "__prefab": null,
  2077. "_contentSize": {
  2078. "__type__": "cc.Size",
  2079. "width": 80,
  2080. "height": 80
  2081. },
  2082. "_anchorPoint": {
  2083. "__type__": "cc.Vec2",
  2084. "x": 0.5,
  2085. "y": 0.5
  2086. },
  2087. "_id": "96NM0ShatPj6ucJ4VjpscV"
  2088. },
  2089. {
  2090. "__type__": "cc.Sprite",
  2091. "_name": "",
  2092. "_objFlags": 0,
  2093. "__editorExtras__": {},
  2094. "node": {
  2095. "__id__": 61
  2096. },
  2097. "_enabled": true,
  2098. "__prefab": null,
  2099. "_customMaterial": null,
  2100. "_srcBlendFactor": 2,
  2101. "_dstBlendFactor": 4,
  2102. "_color": {
  2103. "__type__": "cc.Color",
  2104. "r": 255,
  2105. "g": 114,
  2106. "b": 14,
  2107. "a": 200
  2108. },
  2109. "_spriteFrame": {
  2110. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  2111. "__expectedType__": "cc.SpriteFrame"
  2112. },
  2113. "_type": 0,
  2114. "_fillType": 0,
  2115. "_sizeMode": 0,
  2116. "_fillCenter": {
  2117. "__type__": "cc.Vec2",
  2118. "x": 0,
  2119. "y": 0
  2120. },
  2121. "_fillStart": 0,
  2122. "_fillRange": 0,
  2123. "_isTrimmedMode": true,
  2124. "_useGrayscale": false,
  2125. "_atlas": null,
  2126. "_id": "f6dypdAohBor8UgGaFWrZx"
  2127. },
  2128. {
  2129. "__type__": "083d8ftuS9OLodO1ov/lYhG",
  2130. "_name": "",
  2131. "_objFlags": 0,
  2132. "__editorExtras__": {},
  2133. "node": {
  2134. "__id__": 61
  2135. },
  2136. "_enabled": true,
  2137. "__prefab": null,
  2138. "_id": "b66ePaIg5KRpk2ZuQhu3g2"
  2139. },
  2140. {
  2141. "__type__": "cc.Node",
  2142. "_name": "physicContainerNode",
  2143. "_objFlags": 0,
  2144. "__editorExtras__": {},
  2145. "_parent": {
  2146. "__id__": 30
  2147. },
  2148. "_children": [],
  2149. "_active": true,
  2150. "_components": [
  2151. {
  2152. "__id__": 67
  2153. },
  2154. {
  2155. "__id__": 68
  2156. }
  2157. ],
  2158. "_prefab": null,
  2159. "_lpos": {
  2160. "__type__": "cc.Vec3",
  2161. "x": 0,
  2162. "y": 0,
  2163. "z": 0
  2164. },
  2165. "_lrot": {
  2166. "__type__": "cc.Quat",
  2167. "x": 0,
  2168. "y": 0,
  2169. "z": 0,
  2170. "w": 1
  2171. },
  2172. "_lscale": {
  2173. "__type__": "cc.Vec3",
  2174. "x": 1,
  2175. "y": 1,
  2176. "z": 1
  2177. },
  2178. "_mobility": 0,
  2179. "_layer": 1073741824,
  2180. "_euler": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 0,
  2183. "y": 0,
  2184. "z": 0
  2185. },
  2186. "_id": "70Pu35R6BLCIiZESHud6XW"
  2187. },
  2188. {
  2189. "__type__": "cc.PolygonCollider2D",
  2190. "_name": "",
  2191. "_objFlags": 0,
  2192. "__editorExtras__": {},
  2193. "node": {
  2194. "__id__": 66
  2195. },
  2196. "_enabled": true,
  2197. "__prefab": null,
  2198. "tag": 0,
  2199. "_group": 1,
  2200. "_density": 1,
  2201. "_sensor": false,
  2202. "_friction": 0.2,
  2203. "_restitution": 0,
  2204. "_offset": {
  2205. "__type__": "cc.Vec2",
  2206. "x": 0,
  2207. "y": 0
  2208. },
  2209. "_points": [
  2210. {
  2211. "__type__": "cc.Vec2",
  2212. "x": -1057.6053780827092,
  2213. "y": 349.8239225350024
  2214. },
  2215. {
  2216. "__type__": "cc.Vec2",
  2217. "x": -1014.5575151071752,
  2218. "y": 336.1475057268575
  2219. },
  2220. {
  2221. "__type__": "cc.Vec2",
  2222. "x": -969.5498231652058,
  2223. "y": 322.5363444455282
  2224. },
  2225. {
  2226. "__type__": "cc.Vec2",
  2227. "x": -922.919804904469,
  2228. "y": 308.9405394110072
  2229. },
  2230. {
  2231. "__type__": "cc.Vec2",
  2232. "x": -875.1448177386396,
  2233. "y": 295.353583688069
  2234. },
  2235. {
  2236. "__type__": "cc.Vec2",
  2237. "x": -826.6991774572024,
  2238. "y": 281.7674083252508
  2239. },
  2240. {
  2241. "__type__": "cc.Vec2",
  2242. "x": -778.0547369841901,
  2243. "y": 268.17278097233196
  2244. },
  2245. {
  2246. "__type__": "cc.Vec2",
  2247. "x": -729.6811249904409,
  2248. "y": 254.55946383870085
  2249. },
  2250. {
  2251. "__type__": "cc.Vec2",
  2252. "x": -682.0456993296465,
  2253. "y": 240.9161831753155
  2254. },
  2255. {
  2256. "__type__": "cc.Vec2",
  2257. "x": -635.6132046951686,
  2258. "y": 227.23040037912696
  2259. },
  2260. {
  2261. "__type__": "cc.Vec2",
  2262. "x": -590.845054722874,
  2263. "y": 213.48780774665295
  2264. },
  2265. {
  2266. "__type__": "cc.Vec2",
  2267. "x": -548.1980620617928,
  2268. "y": 199.6713643763141
  2269. },
  2270. {
  2271. "__type__": "cc.Vec2",
  2272. "x": -508.1222808317339,
  2273. "y": 185.75947364424934
  2274. },
  2275. {
  2276. "__type__": "cc.Vec2",
  2277. "x": -471.0573490493343,
  2278. "y": 171.72242821431678
  2279. },
  2280. {
  2281. "__type__": "cc.Vec2",
  2282. "x": -437.42625918687133,
  2283. "y": 157.51511310929806
  2284. },
  2285. {
  2286. "__type__": "cc.Vec2",
  2287. "x": -407.62494768926496,
  2288. "y": 143.06108866229263
  2289. },
  2290. {
  2291. "__type__": "cc.Vec2",
  2292. "x": -381.781942995053,
  2293. "y": 128.0853277771911
  2294. },
  2295. {
  2296. "__type__": "cc.Vec2",
  2297. "x": -360.8811580015787,
  2298. "y": 111.64928272757722
  2299. },
  2300. {
  2301. "__type__": "cc.Vec2",
  2302. "x": -345.94605723709316,
  2303. "y": 93.20802837089099
  2304. },
  2305. {
  2306. "__type__": "cc.Vec2",
  2307. "x": -337.0242852288319,
  2308. "y": 73.37454001527752
  2309. },
  2310. {
  2311. "__type__": "cc.Vec2",
  2312. "x": -333.60990738028465,
  2313. "y": 53.110655206820354
  2314. },
  2315. {
  2316. "__type__": "cc.Vec2",
  2317. "x": -334.58759912047464,
  2318. "y": 33.27889264452003
  2319. },
  2320. {
  2321. "__type__": "cc.Vec2",
  2322. "x": -338.65041209152355,
  2323. "y": 14.246366738985376
  2324. },
  2325. {
  2326. "__type__": "cc.Vec2",
  2327. "x": -344.64828065333927,
  2328. "y": -3.921133696948896
  2329. },
  2330. {
  2331. "__type__": "cc.Vec2",
  2332. "x": -351.60036184832273,
  2333. "y": -21.195498197275885
  2334. },
  2335. {
  2336. "__type__": "cc.Vec2",
  2337. "x": -358.6121287451711,
  2338. "y": -37.47243382606299
  2339. },
  2340. {
  2341. "__type__": "cc.Vec2",
  2342. "x": -364.8253571649624,
  2343. "y": -52.5304798970459
  2344. },
  2345. {
  2346. "__type__": "cc.Vec2",
  2347. "x": -369.42611811653205,
  2348. "y": -65.98816161590548
  2349. },
  2350. {
  2351. "__type__": "cc.Vec2",
  2352. "x": -371.76380242052204,
  2353. "y": -77.26327380930995
  2354. },
  2355. {
  2356. "__type__": "cc.Vec2",
  2357. "x": -371.6759749869511,
  2358. "y": -85.78451607327482
  2359. },
  2360. {
  2361. "__type__": "cc.Vec2",
  2362. "x": -369.5299665943368,
  2363. "y": -92.01141856886395
  2364. },
  2365. {
  2366. "__type__": "cc.Vec2",
  2367. "x": -364.5420654387209,
  2368. "y": -97.83112642776693
  2369. },
  2370. {
  2371. "__type__": "cc.Vec2",
  2372. "x": -353.9693341616674,
  2373. "y": -104.16077733091034
  2374. },
  2375. {
  2376. "__type__": "cc.Vec2",
  2377. "x": -336.9852199988994,
  2378. "y": -110.17319460712952
  2379. },
  2380. {
  2381. "__type__": "cc.Vec2",
  2382. "x": -315.17116937526345,
  2383. "y": -115.22440865127707
  2384. },
  2385. {
  2386. "__type__": "cc.Vec2",
  2387. "x": -289.4371945034608,
  2388. "y": -119.14004538043166
  2389. },
  2390. {
  2391. "__type__": "cc.Vec2",
  2392. "x": -260.4074444668216,
  2393. "y": -121.95500540768688
  2394. },
  2395. {
  2396. "__type__": "cc.Vec2",
  2397. "x": -228.6435667200358,
  2398. "y": -123.75988666047448
  2399. },
  2400. {
  2401. "__type__": "cc.Vec2",
  2402. "x": -194.6709386325424,
  2403. "y": -124.66841417573953
  2404. },
  2405. {
  2406. "__type__": "cc.Vec2",
  2407. "x": -158.9938060223343,
  2408. "y": -124.80460500497489
  2409. },
  2410. {
  2411. "__type__": "cc.Vec2",
  2412. "x": -122.10363469859175,
  2413. "y": -124.29735468822481
  2414. },
  2415. {
  2416. "__type__": "cc.Vec2",
  2417. "x": -84.48374651459022,
  2418. "y": -123.27799525782217
  2419. },
  2420. {
  2421. "__type__": "cc.Vec2",
  2422. "x": -46.611904150127366,
  2423. "y": -121.87912616954735
  2424. },
  2425. {
  2426. "__type__": "cc.Vec2",
  2427. "x": -8.961691132995668,
  2428. "y": -120.23402729648929
  2429. },
  2430. {
  2431. "__type__": "cc.Vec2",
  2432. "x": 27.99691359743742,
  2433. "y": -118.47635811361282
  2434. },
  2435. {
  2436. "__type__": "cc.Vec2",
  2437. "x": 63.79764510091461,
  2438. "y": -116.74001706284338
  2439. },
  2440. {
  2441. "__type__": "cc.Vec2",
  2442. "x": 97.97887241080892,
  2443. "y": -115.15912552544592
  2444. },
  2445. {
  2446. "__type__": "cc.Vec2",
  2447. "x": 130.0858252856836,
  2448. "y": -113.86818703184646
  2449. },
  2450. {
  2451. "__type__": "cc.Vec2",
  2452. "x": 159.6741510738485,
  2453. "y": -113.00268784938841
  2454. },
  2455. {
  2456. "__type__": "cc.Vec2",
  2457. "x": 188.14444331850666,
  2458. "y": -112.67556997072316
  2459. },
  2460. {
  2461. "__type__": "cc.Vec2",
  2462. "x": 217.0067011432807,
  2463. "y": -112.81140696573853
  2464. },
  2465. {
  2466. "__type__": "cc.Vec2",
  2467. "x": 245.99721948237354,
  2468. "y": -113.26541146803947
  2469. },
  2470. {
  2471. "__type__": "cc.Vec2",
  2472. "x": 274.88293891737914,
  2473. "y": -113.89387654732043
  2474. },
  2475. {
  2476. "__type__": "cc.Vec2",
  2477. "x": 303.42693723374265,
  2478. "y": -114.55419770335395
  2479. },
  2480. {
  2481. "__type__": "cc.Vec2",
  2482. "x": 331.3882914190396,
  2483. "y": -115.10478215672713
  2484. },
  2485. {
  2486. "__type__": "cc.Vec2",
  2487. "x": 358.52147646343906,
  2488. "y": -115.40524324066334
  2489. },
  2490. {
  2491. "__type__": "cc.Vec2",
  2492. "x": 384.5751615336851,
  2493. "y": -115.31698404839986
  2494. },
  2495. {
  2496. "__type__": "cc.Vec2",
  2497. "x": 409.29015064560195,
  2498. "y": -114.7044446859319
  2499. },
  2500. {
  2501. "__type__": "cc.Vec2",
  2502. "x": 432.39606691036573,
  2503. "y": -113.43762156226663
  2504. },
  2505. {
  2506. "__type__": "cc.Vec2",
  2507. "x": 453.60626406964417,
  2508. "y": -111.39717599946287
  2509. },
  2510. {
  2511. "__type__": "cc.Vec2",
  2512. "x": 472.610746801566,
  2513. "y": -108.48496455722716
  2514. },
  2515. {
  2516. "__type__": "cc.Vec2",
  2517. "x": 489.06921684931643,
  2518. "y": -104.64578579757654
  2519. },
  2520. {
  2521. "__type__": "cc.Vec2",
  2522. "x": 502.61660799505694,
  2523. "y": -99.90977978797714
  2524. },
  2525. {
  2526. "__type__": "cc.Vec2",
  2527. "x": 512.926626099678,
  2528. "y": -94.45593543258761
  2529. },
  2530. {
  2531. "__type__": "cc.Vec2",
  2532. "x": 519.2680546169436,
  2533. "y": -89.165488809141
  2534. },
  2535. {
  2536. "__type__": "cc.Vec2",
  2537. "x": 521.4002715496763,
  2538. "y": -85.23611064117762
  2539. },
  2540. {
  2541. "__type__": "cc.Vec2",
  2542. "x": 521.4464743585332,
  2543. "y": -79.89386210685002
  2544. },
  2545. {
  2546. "__type__": "cc.Vec2",
  2547. "x": 518.2604597542529,
  2548. "y": -70.20873916664159
  2549. },
  2550. {
  2551. "__type__": "cc.Vec2",
  2552. "x": 511.13573606055536,
  2553. "y": -57.2174275874397
  2554. },
  2555. {
  2556. "__type__": "cc.Vec2",
  2557. "x": 500.6832137148712,
  2558. "y": -42.053383996795596
  2559. },
  2560. {
  2561. "__type__": "cc.Vec2",
  2562. "x": 487.78559627651623,
  2563. "y": -25.37395530129258
  2564. },
  2565. {
  2566. "__type__": "cc.Vec2",
  2567. "x": 473.3272209860308,
  2568. "y": -7.5828982968388345
  2569. },
  2570. {
  2571. "__type__": "cc.Vec2",
  2572. "x": 458.1625179713707,
  2573. "y": 11.036597733850389
  2574. },
  2575. {
  2576. "__type__": "cc.Vec2",
  2577. "x": 443.1204730242451,
  2578. "y": 30.27242517788406
  2579. },
  2580. {
  2581. "__type__": "cc.Vec2",
  2582. "x": 429.0132022488847,
  2583. "y": 49.975029719406805
  2584. },
  2585. {
  2586. "__type__": "cc.Vec2",
  2587. "x": 416.65232821193814,
  2588. "y": 70.07465815540941
  2589. },
  2590. {
  2591. "__type__": "cc.Vec2",
  2592. "x": 406.8971510736778,
  2593. "y": 90.61555976233741
  2594. },
  2595. {
  2596. "__type__": "cc.Vec2",
  2597. "x": 400.7906029710055,
  2598. "y": 111.75296569032805
  2599. },
  2600. {
  2601. "__type__": "cc.Vec2",
  2602. "x": 399.7915660222606,
  2603. "y": 133.48788734920527
  2604. },
  2605. {
  2606. "__type__": "cc.Vec2",
  2607. "x": 405.6063220481711,
  2608. "y": 154.9476592143129
  2609. },
  2610. {
  2611. "__type__": "cc.Vec2",
  2612. "x": 418.7705477082986,
  2613. "y": 174.05617106776788
  2614. },
  2615. {
  2616. "__type__": "cc.Vec2",
  2617. "x": 437.2767951678422,
  2618. "y": 190.43578491568593
  2619. },
  2620. {
  2621. "__type__": "cc.Vec2",
  2622. "x": 459.572787338605,
  2623. "y": 205.40042195523785
  2624. },
  2625. {
  2626. "__type__": "cc.Vec2",
  2627. "x": 485.55501709317576,
  2628. "y": 219.58729961213083
  2629. },
  2630. {
  2631. "__type__": "cc.Vec2",
  2632. "x": 514.8622775348645,
  2633. "y": 233.2217396455613
  2634. },
  2635. {
  2636. "__type__": "cc.Vec2",
  2637. "x": 547.1039876915466,
  2638. "y": 246.4398903734864
  2639. },
  2640. {
  2641. "__type__": "cc.Vec2",
  2642. "x": 581.8632204337271,
  2643. "y": 259.3343228233439
  2644. },
  2645. {
  2646. "__type__": "cc.Vec2",
  2647. "x": 618.7045863199901,
  2648. "y": 271.97561238034956
  2649. },
  2650. {
  2651. "__type__": "cc.Vec2",
  2652. "x": 657.1803094154227,
  2653. "y": 284.42262713287494
  2654. },
  2655. {
  2656. "__type__": "cc.Vec2",
  2657. "x": 696.8341685094725,
  2658. "y": 296.72760240700023
  2659. },
  2660. {
  2661. "__type__": "cc.Vec2",
  2662. "x": 737.2039009321322,
  2663. "y": 308.9387182879942
  2664. },
  2665. {
  2666. "__type__": "cc.Vec2",
  2667. "x": 777.8225778238393,
  2668. "y": 321.1014014155649
  2669. },
  2670. {
  2671. "__type__": "cc.Vec2",
  2672. "x": 818.2192618764568,
  2673. "y": 333.25890171202957
  2674. },
  2675. {
  2676. "__type__": "cc.Vec2",
  2677. "x": 857.9190968250691,
  2678. "y": 345.45236848713927
  2679. },
  2680. {
  2681. "__type__": "cc.Vec2",
  2682. "x": 896.4428489049862,
  2683. "y": 357.720454474025
  2684. },
  2685. {
  2686. "__type__": "cc.Vec2",
  2687. "x": 933.3057964082878,
  2688. "y": 370.09829645266655
  2689. },
  2690. {
  2691. "__type__": "cc.Vec2",
  2692. "x": 968.2452022947664,
  2693. "y": 382.69821297673576
  2694. },
  2695. {
  2696. "__type__": "cc.Vec2",
  2697. "x": 979.1007977052338,
  2698. "y": 352.5957870232642
  2699. },
  2700. {
  2701. "__type__": "cc.Vec2",
  2702. "x": 943.8279172147589,
  2703. "y": 339.8756122387397
  2704. },
  2705. {
  2706. "__type__": "cc.Vec2",
  2707. "x": 906.3915319543887,
  2708. "y": 327.3052213072249
  2709. },
  2710. {
  2711. "__type__": "cc.Vec2",
  2712. "x": 867.4720694346967,
  2713. "y": 314.9111193058295
  2714. },
  2715. {
  2716. "__type__": "cc.Vec2",
  2717. "x": 827.5279724985432,
  2718. "y": 302.6426295379703
  2719. },
  2720. {
  2721. "__type__": "cc.Vec2",
  2722. "x": 787.0231719320211,
  2723. "y": 290.45259126021654
  2724. },
  2725. {
  2726. "__type__": "cc.Vec2",
  2727. "x": 746.4259760209925,
  2728. "y": 278.29634030575573
  2729. },
  2730. {
  2731. "__type__": "cc.Vec2",
  2732. "x": 706.2086120081057,
  2733. "y": 266.1313131203434
  2734. },
  2735. {
  2736. "__type__": "cc.Vec2",
  2737. "x": 666.8473155845819,
  2738. "y": 253.91712286712658
  2739. },
  2740. {
  2741. "__type__": "cc.Vec2",
  2742. "x": 628.822988631179,
  2743. "y": 241.61613615480573
  2744. },
  2745. {
  2746. "__type__": "cc.Vec2",
  2747. "x": 592.6225744881481,
  2748. "y": 229.19477483290615
  2749. },
  2750. {
  2751. "__type__": "cc.Vec2",
  2752. "x": 558.741461771344,
  2753. "y": 216.62609351323235
  2754. },
  2755. {
  2756. "__type__": "cc.Vec2",
  2757. "x": 527.6874255901355,
  2758. "y": 203.89485410443868
  2759. },
  2760. {
  2761. "__type__": "cc.Vec2",
  2762. "x": 499.98670336580864,
  2763. "y": 191.0078141574004
  2764. },
  2765. {
  2766. "__type__": "cc.Vec2",
  2767. "x": 476.19187867701993,
  2768. "y": 178.01530851351214
  2769. },
  2770. {
  2771. "__type__": "cc.Vec2",
  2772. "x": 456.88490917786095,
  2773. "y": 165.0568454554078
  2774. },
  2775. {
  2776. "__type__": "cc.Vec2",
  2777. "x": 442.9054522917016,
  2778. "y": 152.6838289322322
  2779. },
  2780. {
  2781. "__type__": "cc.Vec2",
  2782. "x": 435.0618261451884,
  2783. "y": 141.29842525834343
  2784. },
  2785. {
  2786. "__type__": "cc.Vec2",
  2787. "x": 431.9878070246146,
  2788. "y": 129.95353843204475
  2789. },
  2790. {
  2791. "__type__": "cc.Vec2",
  2792. "x": 432.5831794996977,
  2793. "y": 117.00069007139068
  2794. },
  2795. {
  2796. "__type__": "cc.Vec2",
  2797. "x": 436.9183333013223,
  2798. "y": 101.99484648766256
  2799. },
  2800. {
  2801. "__type__": "cc.Vec2",
  2802. "x": 444.8162584579838,
  2803. "y": 85.36465092662183
  2804. },
  2805. {
  2806. "__type__": "cc.Vec2",
  2807. "x": 455.68399501674037,
  2808. "y": 67.6929663743433
  2809. },
  2810. {
  2811. "__type__": "cc.Vec2",
  2812. "x": 468.7449510480207,
  2813. "y": 49.4516739432097
  2814. },
  2815. {
  2816. "__type__": "cc.Vec2",
  2817. "x": 483.1748570286295,
  2818. "y": 30.99865226614961
  2819. },
  2820. {
  2821. "__type__": "cc.Vec2",
  2822. "x": 498.14993697295654,
  2823. "y": 12.611978863241633
  2824. },
  2825. {
  2826. "__type__": "cc.Vec2",
  2827. "x": 512.8632845828578,
  2828. "y": -5.4928220424559875
  2829. },
  2830. {
  2831. "__type__": "cc.Vec2",
  2832. "x": 526.5334378964567,
  2833. "y": -23.171307897735666
  2834. },
  2835. {
  2836. "__type__": "cc.Vec2",
  2837. "x": 538.4088420644443,
  2838. "y": -40.399603662559926
  2839. },
  2840. {
  2841. "__type__": "cc.Vec2",
  2842. "x": 547.736308556294,
  2843. "y": -57.407424407577174
  2844. },
  2845. {
  2846. "__type__": "cc.Vec2",
  2847. "x": 553.4908557195917,
  2848. "y": -74.90059492439998
  2849. },
  2850. {
  2851. "__type__": "cc.Vec2",
  2852. "x": 553.3300997882145,
  2853. "y": -93.48816914397867
  2854. },
  2855. {
  2856. "__type__": "cc.Vec2",
  2857. "x": 544.4719453830562,
  2858. "y": -109.81251119085901
  2859. },
  2860. {
  2861. "__type__": "cc.Vec2",
  2862. "x": 530.8523631581346,
  2863. "y": -121.17488365920927
  2864. },
  2865. {
  2866. "__type__": "cc.Vec2",
  2867. "x": 515.4504623174425,
  2868. "y": -129.322257321398
  2869. },
  2870. {
  2871. "__type__": "cc.Vec2",
  2872. "x": 498.00957123662096,
  2873. "y": -135.4193843684391
  2874. },
  2875. {
  2876. "__type__": "cc.Vec2",
  2877. "x": 478.67794069843376,
  2878. "y": -139.92876981777286
  2879. },
  2880. {
  2881. "__type__": "cc.Vec2",
  2882. "x": 457.5650494069184,
  2883. "y": -143.16406985014643
  2884. },
  2885. {
  2886. "__type__": "cc.Vec2",
  2887. "x": 434.8051440271342,
  2888. "y": -145.3535991408583
  2889. },
  2890. {
  2891. "__type__": "cc.Vec2",
  2892. "x": 410.5627741590845,
  2893. "y": -146.68273036289625
  2894. },
  2895. {
  2896. "__type__": "cc.Vec2",
  2897. "x": 385.0258384663148,
  2898. "y": -147.31564095160013
  2899. },
  2900. {
  2901. "__type__": "cc.Vec2",
  2902. "x": 358.39850498187144,
  2903. "y": -147.4058434292585
  2904. },
  2905. {
  2906. "__type__": "cc.Vec2",
  2907. "x": 330.89612264346204,
  2908. "y": -147.10129401514791
  2909. },
  2910. {
  2911. "__type__": "cc.Vec2",
  2912. "x": 302.741905539699,
  2913. "y": -146.54691191578678
  2914. },
  2915. {
  2916. "__type__": "cc.Vec2",
  2917. "x": 274.1648735826311,
  2918. "y": -145.8858265776798
  2919. },
  2920. {
  2921. "__type__": "cc.Vec2",
  2922. "x": 245.39864868168894,
  2923. "y": -145.25996133469488
  2924. },
  2925. {
  2926. "__type__": "cc.Vec2",
  2927. "x": 216.68085354421794,
  2928. "y": -144.81022779988646
  2929. },
  2930. {
  2931. "__type__": "cc.Vec2",
  2932. "x": 188.25297367368253,
  2933. "y": -144.67643515622999
  2934. },
  2935. {
  2936. "__type__": "cc.Vec2",
  2937. "x": 160.3258489261498,
  2938. "y": -144.99731215061163
  2939. },
  2940. {
  2941. "__type__": "cc.Vec2",
  2942. "x": 131.1964801342394,
  2943. "y": -145.849386210341
  2944. },
  2945. {
  2946. "__type__": "cc.Vec2",
  2947. "x": 99.3608990735683,
  2948. "y": -147.12941353705403
  2949. },
  2950. {
  2951. "__type__": "cc.Vec2",
  2952. "x": 65.31195279946951,
  2953. "y": -148.70418703871943
  2954. },
  2955. {
  2956. "__type__": "cc.Vec2",
  2957. "x": 29.532070777562993,
  2958. "y": -150.4395168863872
  2959. },
  2960. {
  2961. "__type__": "cc.Vec2",
  2962. "x": -7.503178251769931,
  2963. "y": -152.20083110194827
  2964. },
  2965. {
  2966. "__type__": "cc.Vec2",
  2967. "x": -45.32285952174767,
  2968. "y": -153.85333476795262
  2969. },
  2970. {
  2971. "__type__": "cc.Vec2",
  2972. "x": -83.45975226470811,
  2973. "y": -155.2619939999904
  2974. },
  2975. {
  2976. "__type__": "cc.Vec2",
  2977. "x": -121.4502403014072,
  2978. "y": -156.29139531177518
  2979. },
  2980. {
  2981. "__type__": "cc.Vec2",
  2982. "x": -158.83488660461887,
  2983. "y": -156.8054447997126
  2984. },
  2985. {
  2986. "__type__": "cc.Vec2",
  2987. "x": -195.15981332058254,
  2988. "y": -156.66678113676045
  2989. },
  2990. {
  2991. "__type__": "cc.Vec2",
  2992. "x": -229.97928655144864,
  2993. "y": -155.73560650358797
  2994. },
  2995. {
  2996. "__type__": "cc.Vec2",
  2997. "x": -262.86035240817836,
  2998. "y": -153.8672445923131
  2999. },
  3000. {
  3001. "__type__": "cc.Vec2",
  3002. "x": -293.39118855317946,
  3003. "y": -150.90672708050587
  3004. },
  3005. {
  3006. "__type__": "cc.Vec2",
  3007. "x": -321.19624273411176,
  3008. "y": -146.67595853622288
  3009. },
  3010. {
  3011. "__type__": "cc.Vec2",
  3012. "x": -345.9624643272723,
  3013. "y": -140.941146213183
  3014. },
  3015. {
  3016. "__type__": "cc.Vec2",
  3017. "x": -367.6626658383329,
  3018. "y": -133.25922266908958
  3019. },
  3020. {
  3021. "__type__": "cc.Vec2",
  3022. "x": -385.4489748444827,
  3023. "y": -122.61096878707673
  3024. },
  3025. {
  3026. "__type__": "cc.Vec2",
  3027. "x": -397.7963244212884,
  3028. "y": -108.20451502488595
  3029. },
  3030. {
  3031. "__type__": "cc.Vec2",
  3032. "x": -403.62078453453336,
  3033. "y": -91.30414066500633
  3034. },
  3035. {
  3036. "__type__": "cc.Vec2",
  3037. "x": -403.79765070447803,
  3038. "y": -74.14413244069004
  3039. },
  3040. {
  3041. "__type__": "cc.Vec2",
  3042. "x": -400.35326103385864,
  3043. "y": -57.531162114563216
  3044. },
  3045. {
  3046. "__type__": "cc.Vec2",
  3047. "x": -394.78418775691273,
  3048. "y": -41.24107088420409
  3049. },
  3050. {
  3051. "__type__": "cc.Vec2",
  3052. "x": -388.0988290185008,
  3053. "y": -25.038795177843223
  3054. },
  3055. {
  3056. "__type__": "cc.Vec2",
  3057. "x": -381.14226315167724,
  3058. "y": -8.890001802724093
  3059. },
  3060. {
  3061. "__type__": "cc.Vec2",
  3062. "x": -374.7152733017389,
  3063. "y": 7.079628325855143
  3064. },
  3065. {
  3066. "__type__": "cc.Vec2",
  3067. "x": -369.58233986160155,
  3068. "y": 22.627246542264626
  3069. },
  3070. {
  3071. "__type__": "cc.Vec2",
  3072. "x": -366.4216271978848,
  3073. "y": 37.433821710948735
  3074. },
  3075. {
  3076. "__type__": "cc.Vec2",
  3077. "x": -365.7420769947154,
  3078. "y": 51.218001043179655
  3079. },
  3080. {
  3081. "__type__": "cc.Vec2",
  3082. "x": -367.8957482184338,
  3083. "y": 63.99975734800375
  3084. },
  3085. {
  3086. "__type__": "cc.Vec2",
  3087. "x": -373.4263236222819,
  3088. "y": 76.29446772285904
  3089. },
  3090. {
  3091. "__type__": "cc.Vec2",
  3092. "x": -383.48687593396824,
  3093. "y": 88.71682811226654
  3094. },
  3095. {
  3096. "__type__": "cc.Vec2",
  3097. "x": -399.7840570049472,
  3098. "y": 101.53267222280867
  3099. },
  3100. {
  3101. "__type__": "cc.Vec2",
  3102. "x": -422.6497935216729,
  3103. "y": 114.783136191223
  3104. },
  3105. {
  3106. "__type__": "cc.Vec2",
  3107. "x": -450.6437955006289,
  3108. "y": 128.36059196882687
  3109. },
  3110. {
  3111. "__type__": "cc.Vec2",
  3112. "x": -482.9546011459784,
  3113. "y": 142.010158455605
  3114. },
  3115. {
  3116. "__type__": "cc.Vec2",
  3117. "x": -519.0381566682656,
  3118. "y": 155.67554198075038
  3119. },
  3120. {
  3121. "__type__": "cc.Vec2",
  3122. "x": -558.3774643053947,
  3123. "y": 169.33177356313882
  3124. },
  3125. {
  3126. "__type__": "cc.Vec2",
  3127. "x": -600.4721718396261,
  3128. "y": 182.969291862722
  3129. },
  3130. {
  3131. "__type__": "cc.Vec2",
  3132. "x": -644.8323431563942,
  3133. "y": 196.5866462517324
  3134. },
  3135. {
  3136. "__type__": "cc.Vec2",
  3137. "x": -690.9748006703543,
  3138. "y": 210.1869418246846
  3139. },
  3140. {
  3141. "__type__": "cc.Vec2",
  3142. "x": -738.4209677829964,
  3143. "y": 223.7760168741897
  3144. },
  3145. {
  3146. "__type__": "cc.Vec2",
  3147. "x": -786.6955989533244,
  3148. "y": 237.36147879329704
  3149. },
  3150. {
  3151. "__type__": "cc.Vec2",
  3152. "x": -835.3260618005788,
  3153. "y": 250.95219982903737
  3154. },
  3155. {
  3156. "__type__": "cc.Vec2",
  3157. "x": -883.841994761359,
  3158. "y": 264.55808818693066
  3159. },
  3160. {
  3161. "__type__": "cc.Vec2",
  3162. "x": -931.7752605252184,
  3163. "y": 278.1900575128209
  3164. },
  3165. {
  3166. "__type__": "cc.Vec2",
  3167. "x": -978.6601846472942,
  3168. "y": 291.8601848513467
  3169. },
  3170. {
  3171. "__type__": "cc.Vec2",
  3172. "x": -1024.0341343068897,
  3173. "y": 305.58210926337756
  3174. },
  3175. {
  3176. "__type__": "cc.Vec2",
  3177. "x": -1067.294621917291,
  3178. "y": 319.3260774649976
  3179. }
  3180. ],
  3181. "_id": "18AXDWOYFEvIzdmzmEriYc"
  3182. },
  3183. {
  3184. "__type__": "cc.RigidBody2D",
  3185. "_name": "",
  3186. "_objFlags": 0,
  3187. "__editorExtras__": {},
  3188. "node": {
  3189. "__id__": 66
  3190. },
  3191. "_enabled": true,
  3192. "__prefab": null,
  3193. "enabledContactListener": false,
  3194. "bullet": false,
  3195. "awakeOnLoad": true,
  3196. "_group": 1,
  3197. "_type": 0,
  3198. "_allowSleep": true,
  3199. "_gravityScale": 1,
  3200. "_linearDamping": 0,
  3201. "_angularDamping": 0,
  3202. "_linearVelocity": {
  3203. "__type__": "cc.Vec2",
  3204. "x": 0,
  3205. "y": 0
  3206. },
  3207. "_angularVelocity": 0,
  3208. "_fixedRotation": false,
  3209. "_id": "31vCJ7U6FLxZMD7V7xsPgT"
  3210. },
  3211. {
  3212. "__type__": "cc.UITransform",
  3213. "_name": "",
  3214. "_objFlags": 0,
  3215. "__editorExtras__": {},
  3216. "node": {
  3217. "__id__": 30
  3218. },
  3219. "_enabled": true,
  3220. "__prefab": null,
  3221. "_contentSize": {
  3222. "__type__": "cc.Size",
  3223. "width": 100,
  3224. "height": 100
  3225. },
  3226. "_anchorPoint": {
  3227. "__type__": "cc.Vec2",
  3228. "x": 0.5,
  3229. "y": 0.5
  3230. },
  3231. "_id": "3fDiPp7L9Hf6V5f9+duk5G"
  3232. },
  3233. {
  3234. "__type__": "cc.MeshRenderer",
  3235. "_name": "",
  3236. "_objFlags": 0,
  3237. "__editorExtras__": {},
  3238. "node": {
  3239. "__id__": 30
  3240. },
  3241. "_enabled": true,
  3242. "__prefab": null,
  3243. "_materials": [
  3244. null
  3245. ],
  3246. "_visFlags": 0,
  3247. "bakeSettings": {
  3248. "__id__": 71
  3249. },
  3250. "_mesh": null,
  3251. "_shadowCastingMode": 0,
  3252. "_shadowReceivingMode": 1,
  3253. "_shadowBias": 0,
  3254. "_shadowNormalBias": 0,
  3255. "_reflectionProbeId": -1,
  3256. "_reflectionProbeBlendId": -1,
  3257. "_reflectionProbeBlendWeight": 0,
  3258. "_enabledGlobalStandardSkinObject": false,
  3259. "_enableMorph": true,
  3260. "_id": "29oKMy0CRF6r3Glq0OAIxX"
  3261. },
  3262. {
  3263. "__type__": "cc.ModelBakeSettings",
  3264. "texture": null,
  3265. "uvParam": {
  3266. "__type__": "cc.Vec4",
  3267. "x": 0,
  3268. "y": 0,
  3269. "z": 0,
  3270. "w": 0
  3271. },
  3272. "_bakeable": false,
  3273. "_castShadow": false,
  3274. "_receiveShadow": false,
  3275. "_recieveShadow": false,
  3276. "_lightmapSize": 64,
  3277. "_useLightProbe": false,
  3278. "_bakeToLightProbe": true,
  3279. "_reflectionProbeType": 0,
  3280. "_bakeToReflectionProbe": true
  3281. },
  3282. {
  3283. "__type__": "5895dAXMtRB5Y5LDDX4xP8/",
  3284. "_name": "",
  3285. "_objFlags": 0,
  3286. "__editorExtras__": {},
  3287. "node": {
  3288. "__id__": 30
  3289. },
  3290. "_enabled": true,
  3291. "__prefab": null,
  3292. "_syncOnOff": false,
  3293. "_syncTarget": null,
  3294. "_renderMode": 2,
  3295. "_renderUVMode": 1,
  3296. "_spEffectAsset": {
  3297. "__uuid__": "6678422c-a9af-4d38-ab8b-535c51697f2e",
  3298. "__expectedType__": "cc.EffectAsset"
  3299. },
  3300. "_spFrame": {
  3301. "__uuid__": "cfc349a3-1881-4163-8260-b06e014def79@f9941",
  3302. "__expectedType__": "cc.SpriteFrame"
  3303. },
  3304. "_headTailFixedOnOff": false,
  3305. "_headTailFrame": null,
  3306. "_updownFix": false,
  3307. "_thickness": 0,
  3308. "_offset": {
  3309. "__type__": "cc.Vec3",
  3310. "x": 0,
  3311. "y": 0,
  3312. "z": 0
  3313. },
  3314. "_smoothness": 16,
  3315. "_headTailCloseOnoff": false,
  3316. "_innerMeshSprite": null,
  3317. "_physcisOnOff": true,
  3318. "_physicsThickness": 0,
  3319. "_offsetCollider": {
  3320. "__type__": "cc.Vec3",
  3321. "x": 0,
  3322. "y": 0,
  3323. "z": 0
  3324. },
  3325. "_visibleOnOff": true,
  3326. "_sortInXDirection": false,
  3327. "_editWhenRun": true,
  3328. "_gizmotag": {
  3329. "__uuid__": "03aaf7a0-6d40-49dc-86c4-21026d37da49@f9941",
  3330. "__expectedType__": "cc.SpriteFrame"
  3331. },
  3332. "_gizmoColor": {
  3333. "__type__": "cc.Color",
  3334. "r": 255,
  3335. "g": 114,
  3336. "b": 14,
  3337. "a": 200
  3338. },
  3339. "_id": "95pMdD/ylKK4mwhaz4fpB1"
  3340. },
  3341. {
  3342. "__type__": "cc.UIMeshRenderer",
  3343. "_name": "",
  3344. "_objFlags": 0,
  3345. "__editorExtras__": {},
  3346. "node": {
  3347. "__id__": 30
  3348. },
  3349. "_enabled": true,
  3350. "__prefab": null,
  3351. "_id": "aaI+81T3RASqDrL3DJMnFI"
  3352. },
  3353. {
  3354. "__type__": "cc.UIMeshRenderer",
  3355. "_name": "",
  3356. "_objFlags": 0,
  3357. "__editorExtras__": {},
  3358. "node": {
  3359. "__id__": 25
  3360. },
  3361. "_enabled": true,
  3362. "__prefab": null,
  3363. "_id": "c6zVnSy1pBcaJfcxhuz31n"
  3364. },
  3365. {
  3366. "__type__": "cc.UITransform",
  3367. "_name": "",
  3368. "_objFlags": 0,
  3369. "__editorExtras__": {},
  3370. "node": {
  3371. "__id__": 2
  3372. },
  3373. "_enabled": true,
  3374. "__prefab": null,
  3375. "_contentSize": {
  3376. "__type__": "cc.Size",
  3377. "width": 1280,
  3378. "height": 720
  3379. },
  3380. "_anchorPoint": {
  3381. "__type__": "cc.Vec2",
  3382. "x": 0.5,
  3383. "y": 0.5
  3384. },
  3385. "_id": "64ntZC1RlFYJHz19ZLhjyE"
  3386. },
  3387. {
  3388. "__type__": "cc.Canvas",
  3389. "_name": "",
  3390. "_objFlags": 0,
  3391. "__editorExtras__": {},
  3392. "node": {
  3393. "__id__": 2
  3394. },
  3395. "_enabled": true,
  3396. "__prefab": null,
  3397. "_cameraComponent": {
  3398. "__id__": 4
  3399. },
  3400. "_alignCanvasWithScreen": true,
  3401. "_id": "4djcHXVbtKh56TBr3ITWn6"
  3402. },
  3403. {
  3404. "__type__": "cc.Widget",
  3405. "_name": "",
  3406. "_objFlags": 0,
  3407. "__editorExtras__": {},
  3408. "node": {
  3409. "__id__": 2
  3410. },
  3411. "_enabled": true,
  3412. "__prefab": null,
  3413. "_alignFlags": 45,
  3414. "_target": null,
  3415. "_left": 0,
  3416. "_right": 0,
  3417. "_top": 0,
  3418. "_bottom": 0,
  3419. "_horizontalCenter": 0,
  3420. "_verticalCenter": 0,
  3421. "_isAbsLeft": true,
  3422. "_isAbsRight": true,
  3423. "_isAbsTop": true,
  3424. "_isAbsBottom": true,
  3425. "_isAbsHorizontalCenter": true,
  3426. "_isAbsVerticalCenter": true,
  3427. "_originalWidth": 0,
  3428. "_originalHeight": 0,
  3429. "_alignMode": 2,
  3430. "_lockFlags": 0,
  3431. "_id": "da+86NgvRNNoIgITfISw9u"
  3432. },
  3433. {
  3434. "__type__": "cc.SceneGlobals",
  3435. "ambient": {
  3436. "__id__": 79
  3437. },
  3438. "shadows": {
  3439. "__id__": 80
  3440. },
  3441. "_skybox": {
  3442. "__id__": 81
  3443. },
  3444. "fog": {
  3445. "__id__": 82
  3446. },
  3447. "octree": {
  3448. "__id__": 83
  3449. },
  3450. "skin": {
  3451. "__id__": 84
  3452. },
  3453. "lightProbeInfo": {
  3454. "__id__": 85
  3455. },
  3456. "postSettings": {
  3457. "__id__": 86
  3458. },
  3459. "bakedWithStationaryMainLight": false,
  3460. "bakedWithHighpLightmap": false
  3461. },
  3462. {
  3463. "__type__": "cc.AmbientInfo",
  3464. "_skyColorHDR": {
  3465. "__type__": "cc.Vec4",
  3466. "x": 1,
  3467. "y": 1,
  3468. "z": 1,
  3469. "w": 0.520833125
  3470. },
  3471. "_skyColor": {
  3472. "__type__": "cc.Vec4",
  3473. "x": 1,
  3474. "y": 1,
  3475. "z": 1,
  3476. "w": 0.520833125
  3477. },
  3478. "_skyIllumHDR": 20000,
  3479. "_skyIllum": 20000,
  3480. "_groundAlbedoHDR": {
  3481. "__type__": "cc.Vec4",
  3482. "x": 0.2,
  3483. "y": 0.2,
  3484. "z": 0.2,
  3485. "w": 1
  3486. },
  3487. "_groundAlbedo": {
  3488. "__type__": "cc.Vec4",
  3489. "x": 0.2,
  3490. "y": 0.2,
  3491. "z": 0.2,
  3492. "w": 1
  3493. },
  3494. "_skyColorLDR": {
  3495. "__type__": "cc.Vec4",
  3496. "x": 0.452588,
  3497. "y": 0.607642,
  3498. "z": 0.755699,
  3499. "w": 0
  3500. },
  3501. "_skyIllumLDR": 0.8,
  3502. "_groundAlbedoLDR": {
  3503. "__type__": "cc.Vec4",
  3504. "x": 0.618555,
  3505. "y": 0.577848,
  3506. "z": 0.544564,
  3507. "w": 0
  3508. }
  3509. },
  3510. {
  3511. "__type__": "cc.ShadowsInfo",
  3512. "_enabled": false,
  3513. "_type": 0,
  3514. "_normal": {
  3515. "__type__": "cc.Vec3",
  3516. "x": 0,
  3517. "y": 1,
  3518. "z": 0
  3519. },
  3520. "_distance": 0,
  3521. "_planeBias": 1,
  3522. "_shadowColor": {
  3523. "__type__": "cc.Color",
  3524. "r": 76,
  3525. "g": 76,
  3526. "b": 76,
  3527. "a": 255
  3528. },
  3529. "_maxReceived": 4,
  3530. "_size": {
  3531. "__type__": "cc.Vec2",
  3532. "x": 1024,
  3533. "y": 1024
  3534. }
  3535. },
  3536. {
  3537. "__type__": "cc.SkyboxInfo",
  3538. "_envLightingType": 0,
  3539. "_envmapHDR": null,
  3540. "_envmap": null,
  3541. "_envmapLDR": null,
  3542. "_diffuseMapHDR": null,
  3543. "_diffuseMapLDR": null,
  3544. "_enabled": false,
  3545. "_useHDR": true,
  3546. "_editableMaterial": null,
  3547. "_reflectionHDR": null,
  3548. "_reflectionLDR": null,
  3549. "_rotationAngle": 0
  3550. },
  3551. {
  3552. "__type__": "cc.FogInfo",
  3553. "_type": 0,
  3554. "_fogColor": {
  3555. "__type__": "cc.Color",
  3556. "r": 200,
  3557. "g": 200,
  3558. "b": 200,
  3559. "a": 255
  3560. },
  3561. "_enabled": false,
  3562. "_fogDensity": 0.3,
  3563. "_fogStart": 0.5,
  3564. "_fogEnd": 300,
  3565. "_fogAtten": 5,
  3566. "_fogTop": 1.5,
  3567. "_fogRange": 1.2,
  3568. "_accurate": false
  3569. },
  3570. {
  3571. "__type__": "cc.OctreeInfo",
  3572. "_enabled": false,
  3573. "_minPos": {
  3574. "__type__": "cc.Vec3",
  3575. "x": -1024,
  3576. "y": -1024,
  3577. "z": -1024
  3578. },
  3579. "_maxPos": {
  3580. "__type__": "cc.Vec3",
  3581. "x": 1024,
  3582. "y": 1024,
  3583. "z": 1024
  3584. },
  3585. "_depth": 8
  3586. },
  3587. {
  3588. "__type__": "cc.SkinInfo",
  3589. "_enabled": true,
  3590. "_blurRadius": 0.01,
  3591. "_sssIntensity": 3
  3592. },
  3593. {
  3594. "__type__": "cc.LightProbeInfo",
  3595. "_giScale": 1,
  3596. "_giSamples": 1024,
  3597. "_bounces": 2,
  3598. "_reduceRinging": 0,
  3599. "_showProbe": true,
  3600. "_showWireframe": true,
  3601. "_showConvex": false,
  3602. "_data": null,
  3603. "_lightProbeSphereVolume": 1
  3604. },
  3605. {
  3606. "__type__": "cc.PostSettingsInfo",
  3607. "_toneMappingType": 0
  3608. }
  3609. ]